Home
last modified time | relevance | path

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

/NW4C-1.2.23/include/nw/font/
Dfont_ArchiveFontBase.h40 struct ConstructContext;
45 friend struct ConstructContext;
66 ConstructContext* pContext,
95 u32 ManagedCopy(ConstructContext* pContext);
130 ConstructContext* pContext,
168 struct ConstructContext struct
287 op = ConstructContext::COPY; argument
298 op = ConstructContext::SKIP;
309 op = ConstructContext::EXPAND;
597 ConstructContext* pContext,
[all …]
Dfont_ArchiveFont.h95 ConstructContext* pContext,
111 ConstructContext* pContext,
Dfont_PackedFont.h156 ConstructContext* pContext,
172 ConstructContext* pContext,
542 ConstructContext* pContext,
554 ConstructContext* pContext,
/NW4C-1.2.23/sources/libraries/font/
Dfont_ArchiveFont.cpp162 ArchiveFont::ConstructContext* pContext, in InitStreamingConstruct()
175 pContext->op = ConstructContext::ANALYZE_FILE_HEADER; in InitStreamingConstruct()
180 ArchiveFont::ConstructContext* pContext, in StreamingConstruct()
205 … case ConstructContext::DISPATCH: ret = ConstructOpDispatch(pContext, &s); break; in StreamingConstruct()
206 …case ConstructContext::ANALYZE_FILE_HEADER: ret = ConstructOpAnalyzeFileHeader(pContext, &s); b… in StreamingConstruct()
207 … case ConstructContext::ANALYZE_GLGR: ret = ConstructOpAnalyzeGLGR(pContext, &s); break; in StreamingConstruct()
208 … case ConstructContext::ANALYZE_FINF: ret = ConstructOpAnalyzeFINF(pContext, &s); break; in StreamingConstruct()
209 … case ConstructContext::ANALYZE_CMAP: ret = ConstructOpAnalyzeCMAP(pContext, &s); break; in StreamingConstruct()
210 … case ConstructContext::ANALYZE_CWDH: ret = ConstructOpAnalyzeCWDH(pContext, &s); break; in StreamingConstruct()
211 … case ConstructContext::ANALYZE_TGLP: ret = ConstructOpAnalyzeTGLP(pContext, &s); break; in StreamingConstruct()
[all …]
Dfont_ArchiveFontBase.cpp265 ArchiveFontBase::ConstructContext* pContext, in RequestData()
277 ArchiveFontBase::ConstructContext* pContext, in ConstructOpDispatch()
296 case BINBLOCK_SIG_GLGR: pContext->op = ConstructContext::ANALYZE_GLGR; break; in ConstructOpDispatch()
297 case BINBLOCK_SIG_FINF: pContext->op = ConstructContext::ANALYZE_FINF; break; in ConstructOpDispatch()
298 case BINBLOCK_SIG_CMAP: pContext->op = ConstructContext::ANALYZE_CMAP; break; in ConstructOpDispatch()
299 case BINBLOCK_SIG_CWDH: pContext->op = ConstructContext::ANALYZE_CWDH; break; in ConstructOpDispatch()
300 case BINBLOCK_SIG_TGLP: pContext->op = ConstructContext::ANALYZE_TGLP; break; in ConstructOpDispatch()
307 pContext->op = ConstructContext::FATAL_ERROR; in ConstructOpDispatch()
322 ArchiveFontBase::ConstructContext* pContext, in ConstructOpAnalyzeFileHeader()
342 pContext->op = ConstructContext::DISPATCH; in ConstructOpAnalyzeFileHeader()
[all …]
Dfont_PackedFont.cpp153 PackedFont::ConstructContext* pContext, in InitStreamingConstruct()
166 pContext->op = ConstructContext::ANALYZE_FILE_HEADER; in InitStreamingConstruct()
171 PackedFont::ConstructContext* pContext, in StreamingConstruct()
196 case ConstructContext::DISPATCH: ret = ConstructOpDispatch(pContext, &s); break; in StreamingConstruct()
197 …case ConstructContext::ANALYZE_FILE_HEADER: ret = ConstructOpAnalyzeFileHeader(pContext, &s); bre… in StreamingConstruct()
198 …case ConstructContext::ANALYZE_GLGR: ret = ConstructOpAnalyzeGLGRPacked(pContext, &s); bre… in StreamingConstruct()
199 … case ConstructContext::ANALYZE_FINF: ret = ConstructOpAnalyzeFINF(pContext, &s); break; in StreamingConstruct()
200 … case ConstructContext::ANALYZE_CMAP: ret = ConstructOpAnalyzeCMAP(pContext, &s); break; in StreamingConstruct()
201 … case ConstructContext::ANALYZE_CWDH: ret = ConstructOpAnalyzeCWDH(pContext, &s); break; in StreamingConstruct()
202 case ConstructContext::COPY: ret = ConstructOpCopy(pContext, &s); break; in StreamingConstruct()
[all …]
/NW4C-1.2.23/demos/font/PackedFont/sources/
Dmain.cpp274 nw::font::PackedFont::ConstructContext context; in InitFontStreaming()
/NW4C-1.2.23/demos/font/ArchiveFont/sources/
Dmain.cpp305 nw::font::ArchiveFont::ConstructContext context; in InitFontStreaming()