Lines Matching refs:comment

80      struct UString    comment;
115 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
117 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
150 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
167 ustr_deinit(&state->lookahead[i].comment);
173 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
190 if (comment != NULL)
192 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
197 ustr_setlen(&state->lookahead[i].comment, 0, status);
199 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
207 peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status)
232 if(comment != NULL){
233 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
240 expect(ParseState* state, enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status)
244 enum ETokenType token = getToken(state, tokenValue, comment, &line, status);
267 static char *getInvariantString(ParseState* state, uint32_t *line, struct UString *comment, UErrorCode *status)
273 expect(state, TOK_STRING, &tokenValue, comment, line, status);
300 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
444 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
522 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
570 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
572 elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status);
584 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
603 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
619 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
635 result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
874 struct UString comment;
887 ustr_init(&comment);
888 token = getToken(state, &tokenValue, &comment, &line, status);
1088 struct UString comment;
1107 ustr_init(&comment);
1108 token = getToken(state, &tokenValue, &comment, &line, status);
1154 token = peekToken(state, 0, &tokenValue, &line, &comment, status);
1159 token = getToken(state, &tokenValue, &comment, &line, status);
1172 token = peekToken(state, 1, &tokenValue, &line, &comment, status);
1215 struct UString comment;
1228 ustr_init(&comment);
1229 token = getToken(state, &tokenValue, &comment, &line, status);
1269 member = parseResource(state, subtag, &comment, status);
1285 ustr_deinit(&comment);
1295 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1311 result = table_open(state->bundle, tag, comment, status);
1321 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1330 result = array_open(state->bundle, tag, comment, status);
1415 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1426 result = intvector_open(state->bundle, tag, comment, status);
1503 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1562 result = bin_open(state->bundle, tag, (i >> 1), value,NULL, comment, status);
1576 result = bin_open(state->bundle, tag, 0, NULL, "",comment,status);
1585 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1623 result = int_open(state->bundle, tag, value, comment, status);
1635 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1741 result = bin_open(state->bundle, tag, len, data, fullname, comment, status);
1751 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1822 result = string_open(state->bundle, tag, uBuffer, len, comment, status);
1929 struct UString comment;
1932 ustr_init(&comment);
1933 expect(state, TOK_STRING, &tokenValue, &comment, &line, status);
1969 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status)
2086 return parseFunction(state, tag, startline, comment, status);
2102 struct UString comment;
2113 ustr_init(&state.lookahead[i].comment);
2126 ustr_init(&comment);
2127 expect(&state, TOK_STRING, &tokenValue, &comment, NULL, status);
2129 state.bundle = bundle_open(&comment, FALSE, status);
2209 ustr_deinit(&comment);