OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tokenValue
(Results
1 - 4
of
4
) sorted by null
/external/nist-sip/java/gov/nist/core/
Token.java
38
protected String
tokenValue
;
41
return this.
tokenValue
;
47
return "
tokenValue
= " +
tokenValue
+ "/tokenType = " + tokenType;
/external/skia/src/animator/
SkScript.cpp
557
SkScriptValue
tokenValue
;
558
success = innerScript(&script, &
tokenValue
); // terminate and return on comma, close brace
561
if (
tokenValue
.fType == SkType_Displayable) {
563
fDisplayable->setReference(tokenInfo,
tokenValue
.fOperand.fDisplayable);
565
if (
tokenValue
.fType != tokenInfo->getType()) {
566
if (convertTo(tokenInfo->getType(), &
tokenValue
) == false)
571
tokenInfo->getType(),
tokenValue
);
579
SkScriptValue
tokenValue
;
580
success = innerScript(&script, &
tokenValue
); // terminate and return on comma, close brace
587
if (
tokenValue
.fType == SkType_Structure)
[
all
...]
SkScriptTokenizer.cpp
481
SkScriptValue2
tokenValue
;
482
success = innerScript(&script, &
tokenValue
); // terminate and return on comma, close brace
490
value->fOperand.fArray->setType(type =
tokenValue
.fType);
494
if (
tokenValue
.fType != type)
495
convertTo(type, &
tokenValue
);
496
*value->fOperand.fArray->append() =
tokenValue
.fOperand;
[
all
...]
/external/icu4c/tools/genrb/
parse.c
153
getToken(ParseState* state, struct UString **
tokenValue
, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
160
if (
tokenValue
!= NULL)
162
*
tokenValue
= &state->lookahead[state->lookaheadPosition].value;
187
peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **
tokenValue
, uint32_t *linenumber, struct UString *comment, UErrorCode *status)
202
if (
tokenValue
!= NULL)
204
*
tokenValue
= &state->lookahead[i].value;
220
expect(ParseState* state, enum ETokenType expectedToken, struct UString **
tokenValue
, struct UString *comment, uint32_t *linenumber, UErrorCode *status)
224
enum ETokenType token = getToken(state,
tokenValue
, comment, &line, status);
249
struct UString *
tokenValue
;
253
expect(state, TOK_STRING, &
tokenValue
, comment, line, status)
[
all
...]
Completed in 2824 milliseconds