Home | History | Annotate | Download | only in genrb

Lines Matching refs:startline

115 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
300 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
320 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
444 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
461 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
522 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
534 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
584 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
591 return parseUCARules(tag, startline, status);
594 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
619 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
627 printf(" alias %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
869 uint32_t startline, UErrorCode *status)
902 error(startline, "unterminated table");
1082 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UErrorCode *status)
1100 printf(" collation elements %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1103 return addCollation(state, result, "(no type)", startline, status);
1122 error(startline, "unterminated table");
1166 collationRes = addCollation(state, collationRes, subtag, startline, status);
1168 table_add(result, collationRes, startline, status);
1211 realParseTable(ParseState* state, struct SResource *table, char *tag, uint32_t startline, UErrorCode *status)
1224 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1234 warning(startline, "Encountered empty table");
1245 error(startline, "unterminated table");
1295 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1301 return parseCollationElements(state, tag, startline, FALSE, status);
1305 return parseCollationElements(state, tag, startline, TRUE, status);
1308 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1317 return realParseTable(state, result, tag, startline, status);
1321 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1337 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1356 warning(startline, "Encountered empty array");
1365 error(startline, "unterminated array");
1415 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1434 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1450 warning(startline, "Encountered empty int vector");
1503 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1531 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1577 warning(startline, "Encountered empty binary tag");
1585 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1609 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1614 warning(startline, "Encountered empty integer. Default value is 0.");
1635 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1660 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1751 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1782 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1975 uint32_t startline;
1979 token = getToken(state, &tokenValue, NULL, &startline, status);
1982 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1993 error(startline, "Unexpected EOF encountered");
2002 expect(state, TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status);
2016 error(startline, "syntax error while reading a resource, expected '{' or ':'");
2077 error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[resType].nameChars);
2086 return parseFunction(state, tag, startline, comment, status);
2090 error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType].nameChars);