Home | History | Annotate | Download | only in genrb

Lines Matching refs:startline

93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
278 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
298 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
422 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
439 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
512 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
569 return parseUCARules(tag, startline, status);
572 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
597 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
605 printf(" alias %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
828 addCollation(ParseState* state, struct SResource *result, uint32_t startline, UErrorCode *status)
858 error(startline, "unterminated table");
981 error(startline, "Collation could not be built- U_FILE_ACCESS_ERROR. Make sure ICU's data has been built and is loading properly.");
1030 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UErrorCode *status)
1048 startline);
1051 return addCollation(state, result, startline, status);
1070 error(startline, "unterminated table");
1109 collationRes = addCollation(state, collationRes, startline, status); /* need to parse the collation data regardless */
1111 table_add(result, collationRes, startline, status);
1154 realParseTable(ParseState* state, struct SResource *table, char *tag, uint32_t startline, UErrorCode *status)
1167 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1177 warning(startline, "Encountered empty table");
1188 error(startline, "unterminated table");
1238 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1244 return parseCollationElements(state, tag, startline, FALSE, status);
1248 return parseCollationElements(state, tag, startline, TRUE, status);
1251 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1260 return realParseTable(state, result, tag, startline, status);
1264 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1280 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1299 warning(startline, "Encountered empty array");
1308 error(startline, "unterminated array");
1358 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1377 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1393 warning(startline, "Encountered empty int vector");
1446 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1474 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1520 warning(startline, "Encountered empty binary tag");
1528 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1552 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1557 warning(startline, "Encountered empty integer. Default value is 0.");
1578 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1603 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1694 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1725 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1920 uint32_t startline;
1924 token = getToken(state, &tokenValue, NULL, &startline, status);
1927 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1938 error(startline, "Unexpected EOF encountered");
1947 expect(state, TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status);
1961 error(startline, "syntax error while reading a resource, expected '{' or ':'");
2022 error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[resType].nameChars);
2031 return parseFunction(state, tag, startline, comment, status);
2035 error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType].nameChars);