OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:functionObject
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
CallData.cpp
35
JSValue call(ExecState* exec, JSValue
functionObject
, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
38
return exec->interpreter()->executeCall(exec, asObject(
functionObject
), callType, callData, thisValue, args);
CallData.h
60
JSValue call(ExecState*, JSValue
functionObject
, CallType, const CallData&, JSValue thisValue, const ArgList&);
JSObject.cpp
371
JSObject*
functionObject
= asGetterSetter(value)->getter();
372
if (!
functionObject
)
374
return
functionObject
;
390
JSObject*
functionObject
= asGetterSetter(value)->setter();
391
if (!
functionObject
)
393
return
functionObject
;
/external/webkit/Source/WebCore/bindings/js/
JSMainThreadExecState.h
45
static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue
functionObject
, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args)
48
return JSC::call(exec,
functionObject
, callType, callData, thisValue, args);
/external/webkit/Source/WebCore/bindings/v8/
NPV8Object.cpp
176
v8::Handle<v8::Value>
functionObject
= v8NpObject->v8Object->Get(v8::String::New(identifier->value.string));
177
if (
functionObject
.IsEmpty() ||
functionObject
->IsNull()) {
181
if (
functionObject
->IsUndefined()) {
190
v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(
functionObject
);
230
v8::Handle<v8::Object>
functionObject
(v8NpObject->v8Object);
231
if (!
functionObject
->IsFunction())
235
v8::Handle<v8::Function> function(v8::Function::Cast(*
functionObject
));
241
resultObject = proxy->callFunction(function,
functionObject
, argumentCount, argv.get());
/external/webkit/Source/JavaScriptCore/API/tests/
testapi.c
642
static JSValueRef print_callAsFunction(JSContextRef ctx, JSObjectRef
functionObject
, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
644
UNUSED_PARAM(
functionObject
);
[
all
...]
Completed in 188 milliseconds