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()
1042 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UError… in parseCollationElements() argument
1059 … printf(" collation elements %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseCollationElements()
1062 return addCollation(state, result, "(no type)", startline, status); in parseCollationElements()
1081 error(startline, "unterminated table"); in parseCollationElements()
1126 collationRes = addCollation(state, collationRes, subtag, startline, status); in parseCollationElements()
1128 result->add(collationRes, startline, *status); in parseCollationElements()
1171 realParseTable(ParseState* state, TableResource *table, char *tag, uint32_t startline, UErrorCode *… in realParseTable() argument
1184 printf(" parsing table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in realParseTable()
1194 warning(startline, "Encountered empty table"); in realParseTable()
1205 error(startline, "unterminated table"); in realParseTable()
1255 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseTable() argument
1259 return parseCollationElements(state, tag, startline, FALSE, status); in parseTable()
1263 return parseCollationElements(state, tag, startline, TRUE, status); in parseTable()
1266 printf(" table %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseTable()
1275 return realParseTable(state, result, tag, startline, status); in parseTable()
1279 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseArray() argument
1294 printf(" array %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseArray()
1313 warning(startline, "Encountered empty array"); in parseArray()
1322 error(startline, "unterminated array"); in parseArray()
1366 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UEr… in parseIntVector() argument
1384 printf(" vector %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseIntVector()
1400 warning(startline, "Encountered empty int vector"); in parseIntVector()
1453 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UError… in parseBinary() argument
1469 printf(" binary %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseBinary()
1510 warning(startline, "Encountered empty binary value"); in parseBinary()
1516 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErro… in parseInteger() argument
1540 printf(" integer %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseInteger()
1545 warning(startline, "Encountered empty integer. Default value is 0."); in parseInteger()
1566 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseImport() argument
1583 printf(" import %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseImport()
1620 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErro… in parseInclude() argument
1651 printf(" include %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseInclude()
1844 uint32_t startline; in parseResource() local
1848 token = getToken(state, &tokenValue, NULL, &startline, status); in parseResource()
1851 printf(" resource %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline); in parseResource()
1862 error(startline, "Unexpected EOF encountered"); in parseResource()
1871 expect(state, TOK_OPEN_BRACE, &tokenValue, NULL, &startline, status); in parseResource()
1885 error(startline, "syntax error while reading a resource, expected '{' or ':'"); in parseResource()
1946 …error(startline, "error: %s resource type not valid except on top bundle level", gResourceTypes[re… in parseResource()
1955 return parseFunction(state, tag, startline, comment, status); in parseResource()
1959 …error(startline, "internal error: %s resource type found and not handled", gResourceTypes[resType]… in parseResource()