HomeSort by relevance Sort by last modified time
    Searched refs:tokenValue (Results 1 - 6 of 6) 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;
ParserCore.java 74 str = value.tokenValue;
82 NameValue nv = new NameValue(name.tokenValue,str,isFlag);
87 return new NameValue(name.tokenValue,"",true);
90 return new NameValue(name.tokenValue,null,false);
  /external/chromium/third_party/icu/source/tools/genrb/
parse.c 148 getToken(struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
155 if (tokenValue != NULL)
157 *tokenValue = &lookahead[lookaheadPosition].value;
182 peekToken(uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status)
197 if (tokenValue != NULL)
199 *tokenValue = &lookahead[i].value;
215 expect(enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status)
219 enum ETokenType token = getToken(tokenValue, comment, &line, status);
244 struct UString *tokenValue;
248 expect(TOK_STRING, &tokenValue, comment, line, status)
    [all...]
  /external/icu4c/tools/genrb/
parse.c 148 getToken(struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
155 if (tokenValue != NULL)
157 *tokenValue = &lookahead[lookaheadPosition].value;
182 peekToken(uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status)
197 if (tokenValue != NULL)
199 *tokenValue = &lookahead[i].value;
215 expect(enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status)
219 enum ETokenType token = getToken(tokenValue, comment, &line, status);
244 struct UString *tokenValue;
248 expect(TOK_STRING, &tokenValue, comment, line, status)
    [all...]
  /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...]

Completed in 213 milliseconds