Home | History | Annotate | Download | only in genrb

Lines Matching full:startline

123 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
308 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
328 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
452 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
469 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
530 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
542 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
592 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
599 return parseUCARules(tag, startline, status);
602 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
627 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
635 printf(" alias %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
812 uint32_t startline, UErrorCode *status)
845 error(startline, "unterminated table");
1040 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UErrorCode *status)
1057 startline);
1060 return addCollation(state, result, "(no type)", startline, status);
1079 error(startline, "unterminated table");
1124 collationRes = addCollation(state, collationRes, subtag, startline, status);
1126 result->add(collationRes, startline, *status);
1169 realParseTable(ParseState* state, TableResource *table, char *tag, uint32_t startline, UErrorCode *status)
1182 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1192 warning(startline, "Encountered empty table");
1203 error(startline, "unterminated table");
1253 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1257 return parseCollationElements(state, tag, startline, FALSE, status);
1261 return parseCollationElements(state, tag, startline, TRUE, status);
1264 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1273 return realParseTable(state, result, tag, startline, status);
1277 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1292 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1311 warning(startline, "Encountered empty array");
1320 error(startline, "unterminated array");
1364 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1382 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1398 warning(startline, "Encountered empty int vector");
1451 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1467 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1508 warning(startline, "Encountered empty binary value");
1514 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1538 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1543 warning(startline, "Encountered empty integer. Default value is 0.");
1564 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1581 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1618 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1649 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1842 uint32_t startline;
1846 token = getToken(state, &tokenValue, NULL, &startline, status);
1849 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1860 error(startline, "Unexpected EOF encountered");
1869 expect(state, TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status);
1883 error(startline, "syntax error while reading a resource, expected '{' or ':'");
1944 error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[resType].nameChars);
1953 return parseFunction(state, tag, startline, comment, status);
1957 error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType].nameChars);