• Home
  • Raw
  • Download

Lines Matching refs:comment

60      struct UString    comment;  member
95 …(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *stat…
97 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment,…
130 …ffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status); in initLookahead()
147 ustr_deinit(&state->lookahead[i].comment); in cleanupLookahead()
153 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenum… in getToken() argument
170 if (comment != NULL) in getToken()
172 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status); in getToken()
177 ustr_setlen(&state->lookahead[i].comment, 0, status); in getToken()
179 …ffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status); in getToken()
187 …ount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *stat… in peekToken() argument
212 if(comment != NULL){ in peekToken()
213 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status); in peekToken()
220 …m ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenu… in expect() argument
224 enum ETokenType token = getToken(state, tokenValue, comment, &line, status); in expect()
247 static char *getInvariantString(ParseState* state, uint32_t *line, struct UString *comment, UErrorC… in getInvariantString() argument
253 expect(state, TOK_STRING, &tokenValue, comment, line, status); in getInvariantString()
280 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErr… in parseUCARules() argument
425 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* comment in parseTransliterator() argument
503 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UE… in parseDependency() argument
551 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
553 … elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
565 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseString() argument
584 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseString()
600 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseAlias() argument
616 … result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseAlias()
809 struct UString comment; in addCollation() local
821 ustr_init(&comment); in addCollation()
822 token = getToken(state, &tokenValue, &comment, &line, status); in addCollation()
1012 struct UString comment; in parseCollationElements() local
1031 ustr_init(&comment); in parseCollationElements()
1032 token = getToken(state, &tokenValue, &comment, &line, status); in parseCollationElements()
1078 token = peekToken(state, 0, &tokenValue, &line, &comment, status); in parseCollationElements()
1083 token = getToken(state, &tokenValue, &comment, &line, status); in parseCollationElements()
1091 token = peekToken(state, 1, &tokenValue, &line, &comment, status); in parseCollationElements()
1135 struct UString comment; in realParseTable() local
1147 ustr_init(&comment); in realParseTable()
1148 token = getToken(state, &tokenValue, &comment, &line, status); in realParseTable()
1188 member = parseResource(state, subtag, &comment, status); in realParseTable()
1204 ustr_deinit(&comment); in realParseTable()
1214 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseTable() argument
1230 result = table_open(state->bundle, tag, comment, status); in parseTable()
1241 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorC… in parseArray() argument
1250 result = array_open(state->bundle, tag, comment, status); in parseArray()
1335 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UEr… in parseIntVector() argument
1346 result = intvector_open(state->bundle, tag, comment, status); in parseIntVector()
1423 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UError… in parseBinary() argument
1482 result = bin_open(state->bundle, tag, (i >> 1), value,NULL, comment, status); in parseBinary()
1496 result = bin_open(state->bundle, tag, 0, NULL, "",comment,status); in parseBinary()
1505 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErro… in parseInteger() argument
1543 result = int_open(state->bundle, tag, value, comment, status); in parseInteger()
1555 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UError… in parseImport() argument
1662 result = bin_open(state->bundle, tag, len, data, fullname, comment, status); in parseImport()
1672 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErro… in parseInclude() argument
1743 result = string_open(state->bundle, tag, uBuffer, len, comment, status); in parseInclude()
1853 struct UString comment; in parseResourceType() local
1856 ustr_init(&comment); in parseResourceType()
1857 expect(state, TOK_STRING, &tokenValue, &comment, &line, status); in parseResourceType()
1893 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status) in parseResource() argument
2007 return parseFunction(state, tag, startline, comment, status); in parseResource()
2022 struct UString comment; in parse() local
2032 ustr_init(&state.lookahead[i].comment); in parse()
2042 ustr_init(&comment); in parse()
2043 expect(&state, TOK_STRING, &tokenValue, &comment, NULL, status); in parse()
2045 state.bundle = bundle_open(&comment, FALSE, status); in parse()
2128 ustr_deinit(&comment); in parse()