Lines Matching refs:startline
125 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comme…
310 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, … in parseUCARules() argument
330 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseUCARules()
454 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comme… in parseTransliterator() argument
471 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseTransliterator()
532 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UE… in parseDependency() argument
544 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseDependency()
594 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseString() argument
604 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseString()
629 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseAlias() argument
637 printf(" alias %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseAlias()
814 uint32_t startline, UErrorCode *status) in addCollation() argument
847 error(startline, "unterminated table"); in addCollation()
1047 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UError… in parseCollationElements() argument
1064 … printf(" collation elements %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseCollationElements()
1067 return addCollation(state, result, "(no type)", startline, status); in parseCollationElements()
1086 error(startline, "unterminated table"); in parseCollationElements()
1131 collationRes = addCollation(state, collationRes, subtag, startline, status); in parseCollationElements()
1133 result->add(collationRes, startline, *status); in parseCollationElements()
1176 realParseTable(ParseState* state, TableResource *table, char *tag, uint32_t startline, UErrorCode *… in realParseTable() argument
1189 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in realParseTable()
1199 warning(startline, "Encountered empty table"); in realParseTable()
1210 error(startline, "unterminated table"); in realParseTable()
1260 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseTable() argument
1264 return parseCollationElements(state, tag, startline, FALSE, status); in parseTable()
1268 return parseCollationElements(state, tag, startline, TRUE, status); in parseTable()
1271 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseTable()
1280 return realParseTable(state, result, tag, startline, status); in parseTable()
1284 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseArray() argument
1299 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseArray()
1318 warning(startline, "Encountered empty array"); in parseArray()
1327 error(startline, "unterminated array"); in parseArray()
1371 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UEr… in parseIntVector() argument
1389 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseIntVector()
1405 warning(startline, "Encountered empty int vector"); in parseIntVector()
1458 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UError… in parseBinary() argument
1474 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseBinary()
1515 warning(startline, "Encountered empty binary value"); in parseBinary()
1521 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErro… in parseInteger() argument
1545 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseInteger()
1550 warning(startline, "Encountered empty integer. Default value is 0."); in parseInteger()
1571 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseImport() argument
1588 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseImport()
1625 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErro… in parseInclude() argument
1656 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseInclude()
1849 uint32_t startline; in parseResource() local
1853 token = getToken(state, &tokenValue, NULL, &startline, status); in parseResource()
1856 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseResource()
1867 error(startline, "Unexpected EOF encountered"); in parseResource()
1876 expect(state, TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status); in parseResource()
1890 error(startline, "syntax error while reading a resource, expected '{' or ':'"); in parseResource()
1951 …error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[re… in parseResource()
1960 return parseFunction(state, tag, startline, comment, status); in parseResource()
1964 …error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType]… in parseResource()