Home | History | Annotate | Download | only in parseStringTest

Lines Matching refs:fin

50 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout);
51 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout);
283 PFile *fin = NULL, *fout = NULL;
293 fin = PSTDIN;
360 fin = PSTDIN;
362 else if ((fin = pfopen(infilename, "r")) == NULL)
370 if (pfgets(trans, MAX_LINE_LENGTH, fin) == NULL)
372 if (!pfeof(fin))
391 if ((fin = pfopen(inRTfilename, "r")) == NULL)
403 if (0) rc = process_single_key_line(grammar, fin, fout);
404 else rc = process_multi_key_line(grammar, rootrule, fin, fout);
436 if (fin && fin != PSTDIN)
437 pfclose(fin);
448 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout)
458 position = pfgets(line, MAX_LINE_LENGTH, fin);
465 if (pfeof(fin))
536 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout)
549 position = pfgets(line, MAX_LINE_LENGTH, fin);
556 if (pfeof(fin))