OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scriptValue
(Results
1 - 13
of
13
) sorted by null
/external/skia/src/animator/
SkAnimateBase.cpp
223
SkScriptValue
scriptValue
;
224
bool success = engine.evaluateScript(&script, &
scriptValue
);
225
if (success &&
scriptValue
.fType == SkType_Displayable)
226
fTarget =
scriptValue
.fOperand.fDrawable;
SkDisplayXMLParser.cpp
160
SkScriptValue
scriptValue
;
161
scriptValue
.fOperand.fDisplayable = ref;
162
scriptValue
.fType = ref->getType();
163
displayable->setProperty(info->propertyIndex(),
scriptValue
);
SkMemberInfo.cpp
195
SkScriptValue
scriptValue
;
196
scriptValue
.fType = SkType_Unknown;
197
scriptValue
.fOperand.fS32 = 0;
259
success = engine.evaluateScript(&script, &
scriptValue
);
266
if (
scriptValue
.fType == SkType_Displayable) {
269
maker.findKey(
scriptValue
.fOperand.fDisplayable, &charPtr);
270
scriptValue
.fOperand.fString = new SkString(charPtr);
271
scriptValue
.fType = SkType_String;
272
engine.SkScriptEngine::track(
scriptValue
.fOperand.fString);
277
displayable->setReference(this,
scriptValue
.fOperand.fDisplayable)
[
all
...]
SkAnimatorScript.cpp
99
bool SkAnimatorScript::Box(void* user, SkScriptValue*
scriptValue
) {
101
SkDisplayTypes type =
scriptValue
->fType;
105
SkDisplayArray* boxedValue = new SkDisplayArray(*
scriptValue
->fOperand.fArray);
111
boxedValue->value = !!
scriptValue
->fOperand.fS32;
116
boxedValue->value =
scriptValue
->fOperand.fS32;
121
boxedValue->value =
scriptValue
->fOperand.fScalar;
124
SkDisplayString* boxedValue = new SkDisplayString(*
scriptValue
->fOperand.fString);
128
scriptValue
->fOperand.fObject =
scriptValue
->fOperand.fDisplayable;
129
scriptValue
->fType = SkType_Displayable
[
all
...]
SkDisplayable.cpp
536
SkScriptValue
scriptValue
;
537
scriptValue
.fOperand.fDisplayable = displayable;
538
scriptValue
.fType = displayable->getType();
539
setProperty(info->propertyIndex(),
scriptValue
);
SkAnimator.cpp
328
SkScriptValue
scriptValue
;
329
bool success = element->getProperty(info->propertyIndex(), &
scriptValue
);
330
if (success &&
scriptValue
.fType == SkType_Int)
331
return
scriptValue
.fOperand.fS32;
354
SkScriptValue
scriptValue
;
355
bool success = element->getProperty(info->propertyIndex(), &
scriptValue
);
356
if (success &&
scriptValue
.fType == SkType_Float)
357
return
scriptValue
.fOperand.fScalar;
582
SkScriptValue
scriptValue
;
583
scriptValue
.fType = SkType_Int
[
all
...]
SkDisplayApply.cpp
136
SkScriptValue
scriptValue
;
137
scriptValue
.fOperand = values[0];
138
scriptValue
.fType = info->getType();
139
target->setProperty(info->propertyIndex(),
scriptValue
);
480
SkScriptValue
scriptValue
;
481
bool success = target->getProperty(info->propertyIndex(), &
scriptValue
);
483
last[0] =
scriptValue
.fOperand;
484
scriptValue
.fOperand = fActive->fSaveRestore[activeIndex][0];
485
target->setProperty(info->propertyIndex(),
scriptValue
);
770
SkScriptValue
scriptValue
;
[
all
...]
SkScript.cpp
33
merge type and operand arrays into
scriptvalue
array
720
SkScriptValue
scriptValue
;
721
SkDEBUGCODE(
scriptValue
.fOperand.fObject = NULL);
732
fOperandStack.pop(&
scriptValue
.fOperand);
733
scriptValue
.fType = ToDisplayType(topType);
734
handleBox(&
scriptValue
);
884
SkScriptValue
scriptValue
;
890
bool success = innerScript(scriptPtr, suppressed == false ? &
scriptValue
: NULL);
[
all
...]
SkScript.h
203
SkScriptValue
scriptValue
;
204
scriptValue
.fOperand = operand;
205
scriptValue
.fType = type;
206
convertTo(SkType_String, &
scriptValue
);
207
operand =
scriptValue
.fOperand;
219
bool handleUnbox(SkScriptValue*
scriptValue
);
SkScriptTokenizer.cpp
455
SkOperand2::OpType SkScriptEngine2::getUnboxType(SkOperand2
scriptValue
) {
459
return (*callBack)->getReturnType(0, &
scriptValue
);
597
SkScriptValue2
scriptValue
;
598
SkDEBUGCODE(
scriptValue
.fOperand.fObject = NULL);
764
SkScriptValue2
scriptValue
;
770
bool success = innerScript(scriptPtr, &
scriptValue
);
773
success = convertTo(SkOperand2::kS32, &
scriptValue
);
775
int index =
scriptValue
.fOperand.fS32;
776
fValueStack.pop(&
scriptValue
);
777
if (
scriptValue
.fType == SkOperand2::kObject)
[
all
...]
SkScript2.h
220
SkScriptValue2
scriptValue
;
221
scriptValue
.fOperand = *operand;
222
scriptValue
.fType = type;
223
convertTo(SkOperand2::kString, &
scriptValue
);
224
*operand =
scriptValue
.fOperand;
230
SkOperand2::OpType getUnboxType(SkOperand2
scriptValue
);
237
bool handleUnbox(SkScriptValue2*
scriptValue
);
/external/skia/src/xml/
SkJSDisplayable.cpp
248
SkScriptValue
scriptValue
;
249
bool success = displayable->getProperty(info->propertyIndex(), &
scriptValue
);
250
SkASSERT(
scriptValue
.fType == SkType_Scalar);
251
scalar =
scriptValue
.fOperand.fScalar;
351
SkScriptValue
scriptValue
;
352
scriptValue
.fType = SkType_Scalar;
353
scriptValue
.fOperand.fScalar = scalar;
354
displayable->setProperty(-1 - (int) info->fOffset,
scriptValue
);
/external/webkit/WebCore/inspector/
InspectorFrontend.cpp
45
#include "
ScriptValue
.h"
99
void InspectorFrontend::addConsoleMessage(const ScriptObject& messageObj, const Vector<ScriptString>& frames, ScriptState* scriptState, const Vector<
ScriptValue
> arguments, const String& message)
111
ScriptValue
scriptValue
=
ScriptValue
::deserialize(this->scriptState(), serializedValue.get());
112
if (
scriptValue
.hasNoValue()) {
116
function.appendArgument(
scriptValue
);
294
ScriptValue
callFramesValue =
ScriptValue
::deserialize(scriptState(), callFrames);
318
void InspectorFrontend::addProfileHeader(const
ScriptValue
& profile
[
all
...]
Completed in 66 milliseconds