Home | History | Annotate | Download | only in genrb

Lines Matching defs:startline

53 ParseResourceFunction(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
275 parseUCARules(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
296 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
420 parseTransliterator(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
437 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
498 parseDependency(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
510 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
560 parseString(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
567 return parseUCARules(tag, startline, status);
570 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
595 parseAlias(char *tag, uint32_t startline
603 printf(" alias %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
626 addCollation(struct SResource *result, uint32_t startline, UErrorCode *status)
656 error(startline, "unterminated table");
767 error(startline, "Collation could not be built- U_FILE_ACCESS_ERROR. Make sure ICU's data has been built and is loading properly.");
810 parseCollationElements(char *tag, uint32_t startline, UBool newCollation, UErrorCode *status)
828 printf(" collation elements %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
831 return addCollation(result, startline, status);
850 error(startline, "unterminated table");
889 table_add(result, addCollation(collationRes, startline, status), startline, status);
932 realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCode *status)
944 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
954 warning(startline, "Encountered empty table");
965 error(startline, "unterminated table");
1015 parseTable(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1021 return parseCollationElements(tag, startline, FALSE, status);
1025 return parseCollationElements(tag, startline, TRUE, status);
1028 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1038 return realParseTable(result, tag, startline, status);
1042 parseArray(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1058 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1077 warning(startline, "Encountered empty array");
1086 error(startline, "unterminated array");
1136 parseIntVector(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1155 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1171 warning(startline, "Encountered empty int vector");
1224 parseBinary(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1252 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1298 warning(startline, "Encountered empty binary tag");
1306 parseInteger(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1330 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1335 warning(startline, "Encountered empty integer. Default value is 0.");
1356 parseImport(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1382 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1473 parseInclude(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1504 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1706 uint32_t startline;
1709 token = getToken(&tokenValue, NULL, &startline, status);
1712 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1723 error(startline, "Unexpected EOF encountered");
1732 expect(TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status);
1746 error(startline, "syntax error while reading a resource, expected '{' or ':'");
1806 error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[resType].nameChars);
1814 return parseFunction(tag, startline, comment, status);
1818 error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType].nameChars);