Home
last modified time | relevance | path

Searched refs:ConstructContext (Results 1 – 8 of 8) sorted by relevance

/NW4C-2.0.3/include/nw/font/
Dfont_ArchiveFontBase.h42 struct ConstructContext;
47 friend struct ConstructContext;
68 ConstructContext* pContext,
97 u32 ManagedCopy(ConstructContext* pContext);
132 ConstructContext* pContext,
170 struct ConstructContext struct
289 op = ConstructContext::COPY; argument
300 op = ConstructContext::SKIP;
311 op = ConstructContext::EXPAND;
599 ConstructContext* pContext,
[all …]
Dfont_ArchiveFont.h97 ConstructContext* pContext,
113 ConstructContext* pContext,
Dfont_PackedFont.h158 ConstructContext* pContext,
174 ConstructContext* pContext,
544 ConstructContext* pContext,
556 ConstructContext* pContext,
/NW4C-2.0.3/sources/libraries/font/
Dfont_ArchiveFont.cpp164 ArchiveFont::ConstructContext* pContext, in InitStreamingConstruct()
177 pContext->op = ConstructContext::ANALYZE_FILE_HEADER; in InitStreamingConstruct()
182 ArchiveFont::ConstructContext* pContext, in StreamingConstruct()
207 … case ConstructContext::DISPATCH: ret = ConstructOpDispatch(pContext, &s); break; in StreamingConstruct()
208 …case ConstructContext::ANALYZE_FILE_HEADER: ret = ConstructOpAnalyzeFileHeader(pContext, &s); b… in StreamingConstruct()
209 … case ConstructContext::ANALYZE_GLGR: ret = ConstructOpAnalyzeGLGR(pContext, &s); break; in StreamingConstruct()
210 … case ConstructContext::ANALYZE_FINF: ret = ConstructOpAnalyzeFINF(pContext, &s); break; in StreamingConstruct()
211 … case ConstructContext::ANALYZE_CMAP: ret = ConstructOpAnalyzeCMAP(pContext, &s); break; in StreamingConstruct()
212 … case ConstructContext::ANALYZE_CWDH: ret = ConstructOpAnalyzeCWDH(pContext, &s); break; in StreamingConstruct()
213 … case ConstructContext::ANALYZE_TGLP: ret = ConstructOpAnalyzeTGLP(pContext, &s); break; in StreamingConstruct()
[all …]
Dfont_ArchiveFontBase.cpp267 ArchiveFontBase::ConstructContext* pContext, in RequestData()
279 ArchiveFontBase::ConstructContext* pContext, in ConstructOpDispatch()
298 case BINBLOCK_SIG_GLGR: pContext->op = ConstructContext::ANALYZE_GLGR; break; in ConstructOpDispatch()
299 case BINBLOCK_SIG_FINF: pContext->op = ConstructContext::ANALYZE_FINF; break; in ConstructOpDispatch()
300 case BINBLOCK_SIG_CMAP: pContext->op = ConstructContext::ANALYZE_CMAP; break; in ConstructOpDispatch()
301 case BINBLOCK_SIG_CWDH: pContext->op = ConstructContext::ANALYZE_CWDH; break; in ConstructOpDispatch()
302 case BINBLOCK_SIG_TGLP: pContext->op = ConstructContext::ANALYZE_TGLP; break; in ConstructOpDispatch()
309 pContext->op = ConstructContext::FATAL_ERROR; in ConstructOpDispatch()
324 ArchiveFontBase::ConstructContext* pContext, in ConstructOpAnalyzeFileHeader()
344 pContext->op = ConstructContext::DISPATCH; in ConstructOpAnalyzeFileHeader()
[all …]
Dfont_PackedFont.cpp155 PackedFont::ConstructContext* pContext, in InitStreamingConstruct()
168 pContext->op = ConstructContext::ANALYZE_FILE_HEADER; in InitStreamingConstruct()
173 PackedFont::ConstructContext* pContext, in StreamingConstruct()
198 case ConstructContext::DISPATCH: ret = ConstructOpDispatch(pContext, &s); break; in StreamingConstruct()
199 …case ConstructContext::ANALYZE_FILE_HEADER: ret = ConstructOpAnalyzeFileHeader(pContext, &s); bre… in StreamingConstruct()
200 …case ConstructContext::ANALYZE_GLGR: ret = ConstructOpAnalyzeGLGRPacked(pContext, &s); bre… in StreamingConstruct()
201 … case ConstructContext::ANALYZE_FINF: ret = ConstructOpAnalyzeFINF(pContext, &s); break; in StreamingConstruct()
202 … case ConstructContext::ANALYZE_CMAP: ret = ConstructOpAnalyzeCMAP(pContext, &s); break; in StreamingConstruct()
203 … case ConstructContext::ANALYZE_CWDH: ret = ConstructOpAnalyzeCWDH(pContext, &s); break; in StreamingConstruct()
204 case ConstructContext::COPY: ret = ConstructOpCopy(pContext, &s); break; in StreamingConstruct()
[all …]
/NW4C-2.0.3/demos/font/PackedFont/sources/
Dmain.cpp276 nw::font::PackedFont::ConstructContext context; in InitFontStreaming()
/NW4C-2.0.3/demos/font/ArchiveFont/sources/
Dmain.cpp307 nw::font::ArchiveFont::ConstructContext context; in InitFontStreaming()