OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scriptValue
(Results
26 - 42
of
42
) sorted by null
1
2
/external/chromium_org/third_party/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;
335
SkScriptValue
scriptValue
;
336
scriptValue
.fType = SkType_Scalar;
337
scriptValue
.fOperand.fScalar = scalar;
338
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;
335
SkScriptValue
scriptValue
;
336
scriptValue
.fType = SkType_Scalar;
337
scriptValue
.fOperand.fScalar = scalar;
338
displayable->setProperty(-1 - (int) info->fOffset,
scriptValue
);
/external/chromium_org/third_party/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
150
SkScriptValue*
scriptValue
) {
151
if (
scriptValue
== NULL)
160
scriptValue
->fType = SkType_Float;
162
scriptValue
->fOperand.fScalar = paint.measureText(parameters[0].fOperand.fString->c_str(),
165
//
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
);
772
SkScriptValue2
scriptValue
;
778
bool success = innerScript(scriptPtr, &
scriptValue
);
781
success = convertTo(SkOperand2::kS32, &
scriptValue
);
783
int index =
scriptValue
.fOperand.fS32;
784
fValueStack.pop(&
scriptValue
);
785
if (
scriptValue
.fType == SkOperand2::kObject) {
786
success = handleUnbox(&
scriptValue
);
788
SkASSERT(
scriptValue
.fType == SkOperand2::kArray)
[
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
150
SkScriptValue*
scriptValue
) {
151
if (
scriptValue
== NULL)
160
scriptValue
->fType = SkType_Float;
162
scriptValue
->fOperand.fScalar = paint.measureText(parameters[0].fOperand.fString->c_str(),
165
//
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
);
772
SkScriptValue2
scriptValue
;
778
bool success = innerScript(scriptPtr, &
scriptValue
);
781
success = convertTo(SkOperand2::kS32, &
scriptValue
);
783
int index =
scriptValue
.fOperand.fS32;
784
fValueStack.pop(&
scriptValue
);
785
if (
scriptValue
.fType == SkOperand2::kObject) {
786
success = handleUnbox(&
scriptValue
);
788
SkASSERT(
scriptValue
.fType == SkOperand2::kArray)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCanvasAgent.cpp
35
#include "bindings/v8/
ScriptValue
.h"
190
ScriptValue
InspectorCanvasAgent::wrapCanvas2DRenderingContextForInstrumentation(const
ScriptValue
& context)
195
return
ScriptValue
();
199
ScriptValue
InspectorCanvasAgent::wrapWebGLRenderingContextForInstrumentation(const
ScriptValue
& glContext)
204
return
ScriptValue
();
208
ScriptValue
InspectorCanvasAgent::notifyRenderingContextWasWrapped(const
ScriptValue
& wrappedContext)
236
InjectedScriptCanvasModule InspectorCanvasAgent::injectedScriptCanvasModule(ErrorString* errorString, const
ScriptValue
& scriptValue
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.cpp
112
IDBRequest* IDBCursor::update(ScriptState* scriptState,
ScriptValue
& value, ExceptionState& exceptionState)
185
void IDBCursor::continueFunction(ScriptState* scriptState, const
ScriptValue
& keyValue, ExceptionState& exceptionState)
196
void IDBCursor::continuePrimaryKey(ScriptState* scriptState, const
ScriptValue
& keyValue, const
ScriptValue
& primaryKeyValue, ExceptionState& exceptionState)
312
ScriptValue
IDBCursor::key(ScriptState* scriptState)
318
ScriptValue
IDBCursor::primaryKey(ScriptState* scriptState)
324
ScriptValue
IDBCursor::value(ScriptState* scriptState)
341
ScriptValue
scriptValue
= idbAnyToScriptValue(scriptState, value);
343
return
scriptValue
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp
258
PassRefPtrWillBeRawPtr<GCObservation> Internals::observeGC(
ScriptValue
scriptValue
)
260
v8::Handle<v8::Value> observedValue =
scriptValue
.v8Value();
[
all
...]
Completed in 803 milliseconds
1
2