OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:functionObject
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.idl
59
[NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(Function
functionObject
, long scopeIndex, DOMString variableName, any newValue);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
NPV8Object.cpp
266
v8::Handle<v8::Value>
functionObject
= v8Object->Get(v8AtomicString(isolate, identifier->value.string));
267
if (
functionObject
.IsEmpty() ||
functionObject
->IsNull()) {
271
if (
functionObject
->IsUndefined()) {
280
v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(
functionObject
);
322
v8::Local<v8::Object>
functionObject
= v8::Local<v8::Object>::New(isolate, v8NpObject->v8Object);
323
if (!
functionObject
->IsFunction())
327
v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(
functionObject
);
333
resultObject = frame->script().callFunction(function,
functionObject
, argumentCount, argv.get());
Completed in 224 milliseconds