Lines Matching refs:ret
199 ArchiveFont::ConstructResult ret = CONSTRUCT_CONTINUE; in StreamingConstruct() local
203 while (ret == CONSTRUCT_CONTINUE) 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()
214 …case ConstructContext::PREPAIR_COPY_SHEET: ret = ConstructOpPrepairCopySheet(pContext, &s); br… in StreamingConstruct()
215 …case ConstructContext::PREPAIR_EXPAND_SHEET: ret = ConstructOpPrepairExpandSheet(pContext, &s); … in StreamingConstruct()
216 case ConstructContext::COPY: ret = ConstructOpCopy(pContext, &s); break; in StreamingConstruct()
217 case ConstructContext::SKIP: ret = ConstructOpSkip(pContext, &s); break; in StreamingConstruct()
218 case ConstructContext::EXPAND: ret = ConstructOpExpand(pContext, &s); break; in StreamingConstruct()
219 … case ConstructContext::FATAL_ERROR: ret = ConstructOpFatalError(pContext, &s); break; in StreamingConstruct()
223 ret = CONSTRUCT_ERROR; in StreamingConstruct()
229 if (ret == CONSTRUCT_FINISH && GetFINF() == NULL) in StreamingConstruct()
254 return ret; in StreamingConstruct()
276 ArchiveFont::ConstructResult ret = StreamingConstruct(&context, bfnt, fileSize); in Construct() local
278 return ret == CONSTRUCT_FINISH; in Construct()