Home | History | Annotate | Download | only in animator

Lines Matching defs:tokenValue

550                 SkScriptValue tokenValue;
551 success = innerScript(&script, &tokenValue); // terminate and return on comma, close brace
554 if (tokenValue.fType == SkType_Displayable) {
556 fDisplayable->setReference(tokenInfo, tokenValue.fOperand.fDisplayable);
558 if (tokenValue.fType != tokenInfo->getType()) {
559 if (convertTo(tokenInfo->getType(), &tokenValue) == false)
564 tokenInfo->getType(), tokenValue);
572 SkScriptValue tokenValue;
573 success = innerScript(&script, &tokenValue); // terminate and return on comma, close brace
580 if (tokenValue.fType == SkType_Structure) {
590 value->fOperand.fArray->setType(type = tokenValue.fType);
594 if (tokenValue.fType != type) {
595 if (convertTo(type, &tokenValue) == false)
598 *value->fOperand.fArray->append() = tokenValue.fOperand;