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");
807 parseCollationElements(char *tag, uint32_t startline, UBool newCollation, UErrorCode *status)
825 printf(" collation elements %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
828 return addCollation(result, startline, status);
847 error(startline, "unterminated table");
886 table_add(result, addCollation(collationRes, startline, status), startline, status);
929 realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCode *status)
941 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
951 warning(startline, "Encountered empty table");
962 error(startline, "unterminated table");
1012 parseTable(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1018 return parseCollationElements(tag, startline, FALSE, status);
1022 return parseCollationElements(tag, startline, TRUE, status);
1025 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1035 return realParseTable(result, tag, startline, status);
1039 parseArray(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1055 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1074 warning(startline, "Encountered empty array");
1083 error(startline, "unterminated array");
1133 parseIntVector(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1152 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1168 warning(startline, "Encountered empty int vector");
1221 parseBinary(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1249 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1295 warning(startline, "Encountered empty binary tag");
1303 parseInteger(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1327 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1332 warning(startline, "Encountered empty integer. Default value is 0.");
1353 parseImport(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1379 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1470 parseInclude(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1501 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1703 uint32_t startline;
1706 token = getToken(&tokenValue, NULL, &startline, status);
1709 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1720 error(startline, "Unexpected EOF encountered");
1729 expect(TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status);
1743 error(startline, "syntax error while reading a resource, expected '{' or ':'");
1803 error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[resType].nameChars);
1811 return parseFunction(tag, startline, comment, status);
1815 error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType].nameChars);