HomeSort by relevance Sort by last modified time
    Searched refs:scriptValue (Results 26 - 40 of 40) sorted by null

12

  /external/skia/legacy/src/xml/
SkJSDisplayable.cpp 240 SkScriptValue scriptValue;
241 bool success = displayable->getProperty(info->propertyIndex(), &scriptValue);
242 SkASSERT(scriptValue.fType == SkType_Scalar);
243 scalar = scriptValue.fOperand.fScalar;
343 SkScriptValue scriptValue;
344 scriptValue.fType = SkType_Scalar;
345 scriptValue.fOperand.fScalar = scalar;
346 displayable->setProperty(-1 - (int) info->fOffset, scriptValue);
  /external/skia/src/xml/
SkJSDisplayable.cpp 240 SkScriptValue scriptValue;
241 bool success = displayable->getProperty(info->propertyIndex(), &scriptValue);
242 SkASSERT(scriptValue.fType == SkType_Scalar);
243 scalar = scriptValue.fOperand.fScalar;
343 SkScriptValue scriptValue;
344 scriptValue.fType = SkType_Scalar;
345 scriptValue.fOperand.fScalar = scalar;
346 displayable->setProperty(-1 - (int) info->fOffset, scriptValue);
  /external/skia/legacy/src/animator/
SkDisplayXMLParser.cpp 152 SkScriptValue scriptValue;
153 scriptValue.fOperand.fDisplayable = ref;
154 scriptValue.fType = ref->getType();
155 displayable->setProperty(info->propertyIndex(), scriptValue);
SkDrawPaint.cpp 152 SkScriptValue* scriptValue) {
153 if (scriptValue == NULL)
162 scriptValue->fType = SkType_Float;
164 scriptValue->fOperand.fScalar = paint.measureText(parameters[0].fOperand.fString->c_str(),
167 // scriptValue->fOperand.fScalar / 65536.0f);
SkAnimatorScript.h 61 static bool Unbox(void* , SkScriptValue* scriptValue);
SkDisplayable.cpp 528 SkScriptValue scriptValue;
529 scriptValue.fOperand.fDisplayable = displayable;
530 scriptValue.fType = displayable->getType();
531 setProperty(info->propertyIndex(), scriptValue);
SkMemberInfo.h 95 SkScriptValue& scriptValue) const;
SkScriptTokenizer.cpp 463 SkOperand2::OpType SkScriptEngine2::getUnboxType(SkOperand2 scriptValue) {
467 return (*callBack)->getReturnType(0, &scriptValue);
606 SkDEBUGCODE(SkScriptValue2 scriptValue;)
607 SkDEBUGCODE(scriptValue.fOperand.fObject = NULL);
774 SkScriptValue2 scriptValue;
780 bool success = innerScript(scriptPtr, &scriptValue);
783 success = convertTo(SkOperand2::kS32, &scriptValue);
785 int index = scriptValue.fOperand.fS32;
786 fValueStack.pop(&scriptValue);
787 if (scriptValue.fType == SkOperand2::kObject)
    [all...]
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 152 SkScriptValue scriptValue;
153 scriptValue.fOperand.fDisplayable = ref;
154 scriptValue.fType = ref->getType();
155 displayable->setProperty(info->propertyIndex(), scriptValue);
SkDrawPaint.cpp 152 SkScriptValue* scriptValue) {
153 if (scriptValue == NULL)
162 scriptValue->fType = SkType_Float;
164 scriptValue->fOperand.fScalar = paint.measureText(parameters[0].fOperand.fString->c_str(),
167 // scriptValue->fOperand.fScalar / 65536.0f);
SkAnimatorScript.h 61 static bool Unbox(void* , SkScriptValue* scriptValue);
SkDisplayable.cpp 512 SkScriptValue scriptValue;
513 scriptValue.fOperand.fDisplayable = displayable;
514 scriptValue.fType = displayable->getType();
515 setProperty(info->propertyIndex(), scriptValue);
SkMemberInfo.h 95 SkScriptValue& scriptValue) const;
SkScriptTokenizer.cpp 463 SkOperand2::OpType SkScriptEngine2::getUnboxType(SkOperand2 scriptValue) {
467 return (*callBack)->getReturnType(0, &scriptValue);
606 SkDEBUGCODE(SkScriptValue2 scriptValue;)
607 SkDEBUGCODE(scriptValue.fOperand.fObject = NULL);
774 SkScriptValue2 scriptValue;
780 bool success = innerScript(scriptPtr, &scriptValue);
783 success = convertTo(SkOperand2::kS32, &scriptValue);
785 int index = scriptValue.fOperand.fS32;
786 fValueStack.pop(&scriptValue);
787 if (scriptValue.fType == SkOperand2::kObject)
    [all...]
  /external/webkit/Source/WebKit2/Shared/
UserMessageCoders.h 99 WebSerializedScriptValue* scriptValue = static_cast<WebSerializedScriptValue*>(m_root);
100 encoder->encodeBytes(scriptValue->data().data(), scriptValue->data().size());

Completed in 378 milliseconds

12