Lines Matching refs:scriptValue
128 SkScriptValue scriptValue; in applyValues() local
129 scriptValue.fOperand = values[0]; in applyValues()
130 scriptValue.fType = info->getType(); in applyValues()
131 target->setProperty(info->propertyIndex(), scriptValue); in applyValues()
473 SkScriptValue scriptValue; in endSave() local
474 SkDEBUGCODE(bool success = ) target->getProperty(info->propertyIndex(), &scriptValue); in endSave()
476 last[0] = scriptValue.fOperand; in endSave()
477 scriptValue.fOperand = fActive->fSaveRestore[activeIndex][0]; in endSave()
478 target->setProperty(info->propertyIndex(), scriptValue); in endSave()
763 SkScriptValue scriptValue; in save() local
764 SkDEBUGCODE(bool success = ) target->getProperty(info->propertyIndex(), &scriptValue); in save()
766 SkASSERT(scriptValue.fType == SkType_Float); in save()
767 fActive->fSaveRestore[activeIndex][0] = scriptValue.fOperand; in save()
769 SkScriptValue scriptValue; in save() local
770 scriptValue.fType = type; in save()
771 scriptValue.fOperand = last[0]; in save()
772 target->setProperty(info->propertyIndex(), scriptValue); in save()
778 bool SkApply::setProperty(int index, SkScriptValue& scriptValue) { in setProperty() argument
781 SkAnimateBase* animate = (SkAnimateBase*) scriptValue.fOperand.fDisplayable; in setProperty()
787 steps = scriptValue.fOperand.fS32; in setProperty()