Home | History | Annotate | Download | only in genrb

Lines Matching defs:comment

58      struct UString    comment;
93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
95 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
128 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
145 ustr_deinit(&state->lookahead[i].comment);
151 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
168 if (comment != NULL)
170 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
175 ustr_setlen(&state->lookahead[i].comment, 0, status);
177 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
185 peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status)
210 if(comment != NULL){
211 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
218 expect(ParseState* state, enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status)
222 enum ETokenType token = getToken(state, tokenValue, comment, &line, status);
245 static char *getInvariantString(ParseState* state, uint32_t *line, struct UString *comment, UErrorCode *status)
251 expect(state, TOK_STRING, &tokenValue, comment, line, status);
278 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
422 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
548 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
550 elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status);
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
581 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
597 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
613 result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
832 struct UString comment;
843 ustr_init(&comment);
844 token = getToken(state, &tokenValue, &comment, &line, status);
1036 struct UString comment;
1055 ustr_init(&comment);
1056 token = getToken(state, &tokenValue, &comment, &line, status);
1102 token = peekToken(state, 0, &tokenValue, &line, &comment, status);
1107 token = getToken(state, &tokenValue, &comment, &line, status);
1115 token = peekToken(state, 1, &tokenValue, &line, &comment, status);
1158 struct UString comment;
1171 ustr_init(&comment);
1172 token = getToken(state, &tokenValue, &comment, &line, status);
1212 member = parseResource(state, subtag, &comment, status);
1228 ustr_deinit(&comment);
1238 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1254 result = table_open(state->bundle, tag, comment, status);
1264 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1273 result = array_open(state->bundle, tag, comment, status);
1358 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1369 result = intvector_open(state->bundle, tag, comment, status);
1446 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1505 result = bin_open(state->bundle, tag, (i >> 1), value,NULL, comment, status);
1519 result = bin_open(state->bundle, tag, 0, NULL, "",comment,status);
1528 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status)
1566 result = int_open(state->bundle, tag, value, comment, status);
1578 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1684 result = bin_open(state->bundle, tag, len, data, fullname, comment, status);
1694 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
1765 result = string_open(state->bundle, tag, uBuffer, len, comment, status);
1874 struct UString comment;
1877 ustr_init(&comment);
1878 expect(state, TOK_STRING, &tokenValue, &comment, &line, status);
1914 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status)
2031 return parseFunction(state, tag, startline, comment, status);
2047 struct UString comment;
2058 ustr_init(&state.lookahead[i].comment);
2069 ustr_init(&comment);
2070 expect(&state, TOK_STRING, &tokenValue, &comment, NULL, status);
2072 state.bundle = bundle_open(&comment, FALSE, status);
2152 ustr_deinit(&comment);