OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisObject
(Results
51 - 62
of
62
) sorted by null
1
2
3
/external/webkit/Source/WebCore/inspector/front-end/
InjectedFakeWorker.js
335
function bind(func,
thisObject
)
338
return function() { return func.apply(
thisObject
, args.concat(Array.prototype.slice.call(arguments, 0))); };
ExtensionAPI.js
453
function bind(func,
thisObject
)
456
return function() { return func.apply(
thisObject
, args.concat(Array.prototype.slice.call(arguments, 0))); };
utilities.js
32
Function.prototype.bind = function(
thisObject
)
38
return func.apply(
thisObject
, args.concat(Array.prototype.slice.call(arguments, 0)));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java
360
Object
thisObject
= (Object) this;
361
if (
thisObject
instanceof Activity) {
362
return (Activity)
thisObject
;
363
} else if (
thisObject
instanceof Fragment) {
364
return ((Fragment)
thisObject
).getActivity();
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObjectFunctions.cpp
437
JSObject*
thisObject
= exec->hostThisValue().toThisObject(exec);
438
JSObject* unwrappedObject =
thisObject
->unwrappedObject();
457
return JSValue::encode(exec->interpreter()->execute(eval, exec,
thisObject
, static_cast<JSGlobalObject*>(unwrappedObject)->globalScopeChain()));
Lookup.h
181
void setUpStaticFunctionSlot(ExecState*, const HashEntry*, JSObject*
thisObject
, const Identifier& propertyName, PropertySlot&);
/external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js
31
function bind(
thisObject
, memberFunction)
37
return func.apply(
thisObject
, args.concat(Array.prototype.slice.call(arguments, 0)));
508
scope.this = injectedScript._wrapObject(callFrame.
thisObject
, "backtrace");
/external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp
422
JSValueRef JSObjectCallAsFunction(JSContextRef ctx, JSObjectRef object, JSObjectRef
thisObject
, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
428
JSObject* jsThisObject = toJS(
thisObject
);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm
243
JSValueRef ${className}::@{[$function->signature->name]}(JSContextRef context, JSObjectRef, JSObjectRef
thisObject
, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
245
${implementationClassName}* impl = to${implementationClassName}(context,
thisObject
);
/external/webkit/Source/WebKit/gtk/tests/
testcopyandpaste.c
138
static JSValueRef runPasteTestCallback(JSContextRef context, JSObjectRef function, JSObjectRef
thisObject
, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
/prebuilt/common/groovy/
groovy-all-1.7.0.jar
Completed in 1050 milliseconds
1
2
3