Searched refs:tokenValue (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/tools/genrb/ |
D | parse.cpp | 183 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenum… in getToken() argument 190 if (tokenValue != NULL) in getToken() 192 *tokenValue = &state->lookahead[state->lookaheadPosition].value; in getToken() 217 peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenu… in peekToken() argument 232 if (tokenValue != NULL) in peekToken() 234 *tokenValue = &state->lookahead[i].value; in peekToken() 250 expect(ParseState* state, enum ETokenType expectedToken, struct UString **tokenValue, struct UStrin… in expect() argument 254 enum ETokenType token = getToken(state, tokenValue, comment, &line, status); in expect() 279 struct UString *tokenValue; in getInvariantString() local 283 expect(state, TOK_STRING, &tokenValue, comment, line, status); in getInvariantString() [all …]
|
/external/nist-sip/java/gov/nist/core/ |
D | Token.java | 38 protected String tokenValue; field in Token 41 return this.tokenValue; in getTokenValue() 47 return "tokenValue = " + tokenValue + "/tokenType = " + tokenType; in toString()
|
D | ParserCore.java | 74 str = value.tokenValue; in nameValue() 82 NameValue nv = new NameValue(name.tokenValue,str,isFlag); in nameValue() 87 return new NameValue(name.tokenValue,"",true); in nameValue() 90 return new NameValue(name.tokenValue,null,false); in nameValue()
|
D | LexerCore.java | 177 tok.tokenValue = id; in peekNextToken() 186 tok.tokenValue = String.valueOf(nextChar); in peekNextToken() 215 this.currentMatch.tokenValue = id; in match() 222 this.currentMatch.tokenValue = id; in match() 233 this.currentMatch.tokenValue = nexttok; in match() 243 this.currentMatch.tokenValue = in match() 252 this.currentMatch.tokenValue = in match()
|