Searched refs:tokenValue (Results 1 – 9 of 9) 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() 280 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()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/convert/ |
D | CoerceToBooleanTest.java | 219 JsonToken tokenType, String tokenValue, Class<?> targetType) throws IOException in _verifyBooleanCoerceFail() argument 235 _verifyBooleanCoerceFailReason(e, tokenType, tokenValue); in _verifyBooleanCoerceFail() 241 JsonToken tokenType, String tokenValue) throws IOException in _verifyBooleanCoerceFailReason() argument 251 if (!tokenValue.equals(text)) { in _verifyBooleanCoerceFailReason() 254 +" not as expected ("+quote(tokenValue)+")"); in _verifyBooleanCoerceFailReason()
|
D | CoerceJDKScalarsTest.java | 290 JsonToken tokenType, String tokenValue, Class<?> targetType) throws IOException in _verifyBooleanCoerceFail() argument 306 _verifyBooleanCoerceFailReason(e, tokenType, tokenValue); in _verifyBooleanCoerceFail() 312 JsonToken tokenType, String tokenValue) throws IOException in _verifyBooleanCoerceFailReason() argument 323 if (!tokenValue.equals(text)) { in _verifyBooleanCoerceFailReason() 326 … +" not as expected ("+quote(tokenValue)+"); exception message: '"+e.getMessage()+"'"); in _verifyBooleanCoerceFailReason()
|
/external/starlark-go/syntax/ |
D | scan.go | 421 type tokenValue struct { struct 433 func (sc *scanner) startToken(val *tokenValue) { 442 func (sc *scanner) endToken(val *tokenValue) { 456 func (sc *scanner) nextToken(val *tokenValue) Token { 827 func (sc *scanner) scanString(val *tokenValue, quote rune) Token { 910 func (sc *scanner) scanNumber(val *tokenValue, c rune) Token {
|
D | scan_test.go | 26 var val tokenValue
|
D | parse.go | 117 tokval tokenValue
|