Lines Matching refs:ret

190     PackedFont::ConstructResult ret = CONSTRUCT_CONTINUE;  in StreamingConstruct()  local
194 while (ret == CONSTRUCT_CONTINUE) 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()
205 case ConstructContext::SKIP: ret = ConstructOpSkip(pContext, &s); break; in StreamingConstruct()
206 … case ConstructContext::FATAL_ERROR: ret = ConstructOpFatalError(pContext, &s); break; in StreamingConstruct()
207 … case ConstructContext::ANALYZE_TGLP: ret = ConstructOpAnalyzeTGLP(pContext, &s); break; in StreamingConstruct()
210 ret = ConstructOpPrepairCopyPackedSheet(pContext, &s); in StreamingConstruct()
233 if (ret == CONSTRUCT_FINISH && GetFINF() == NULL) in StreamingConstruct()
261 return ret; in StreamingConstruct()
278 PackedFont::ConstructResult ret; in Construct() local
284 ret = StreamingConstruct(&context, bfnt, fileSize); in Construct()
286 return ret == CONSTRUCT_FINISH; in Construct()