Lines Matching defs:tokenValue
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) {
597 value->fOperand.fArray->setType(type = tokenValue.fType);
601 if (tokenValue.fType != type) {
602 if (convertTo(type, &tokenValue) == false)
605 *value->fOperand.fArray->append() = tokenValue.fOperand;