Home
last modified time | relevance | path

Searched refs:thisObject (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DObject.js39 addEventListener: function(eventType, listener, thisObject) argument
48 this._listeners[eventType].push({ thisObject: thisObject, listener: listener }); property
56 removeEventListener: function(eventType, listener, thisObject) argument
64 … if (listener && listeners[i].listener === listener && listeners[i].thisObject === thisObject)
66 else if (!listener && thisObject && listeners[i].thisObject === thisObject)
103 listeners[i].listener.call(listeners[i].thisObject, event);
162 addEventListener: function(eventType, listener, thisObject) { }, argument
169 removeEventListener: function(eventType, listener, thisObject) { }, argument
DSettings.js170 addChangeListener: function(listener, thisObject) argument
172 this._eventSupport.addEventListener(this._name, listener, thisObject);
179 removeChangeListener: function(listener, thisObject) argument
181 this._eventSupport.removeEventListener(this._name, listener, thisObject);
DProgress.js77 addEventListener: function(eventType, listener, thisObject) { } argument
DOverviewGrid.js123 addEventListener: function(eventType, listener, thisObject) argument
125 this._window.addEventListener(eventType, listener, thisObject);
DElementsTreeOutline.js137 addEventListener: function(eventType, listener, thisObject) argument
139 this._eventSupport.addEventListener(eventType, listener, thisObject);
142 removeEventListener: function(eventType, listener, thisObject) argument
144 this._eventSupport.removeEventListener(eventType, listener, thisObject);
/external/chromium_org/third_party/WebKit/Source/core/dom/
DActiveDOMObject.h63 template<class T> void setPendingActivity(T* thisObject) in setPendingActivity() argument
65 ASSERT(thisObject == this); in setPendingActivity()
66 thisObject->ref(); in setPendingActivity()
70 template<class T> void unsetPendingActivity(T* thisObject) in unsetPendingActivity() argument
74 thisObject->deref(); in unsetPendingActivity()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptFunctionCall.cpp116 ScriptFunctionCall::ScriptFunctionCall(const ScriptObject& thisObject, const String& name) in ScriptFunctionCall() argument
117 : ScriptCallArgumentHandler(thisObject.scriptState()) in ScriptFunctionCall()
118 , m_thisObject(thisObject) in ScriptFunctionCall()
127 v8::Handle<v8::Object> thisObject = m_thisObject.v8Object(); in call() local
128 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name)); in call()
143 …result = V8ScriptRunner::callFunction(function, getExecutionContext(), thisObject, m_arguments.siz… in call()
162 v8::Handle<v8::Object> thisObject = m_thisObject.v8Object(); in construct() local
163 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name)); in construct()
DV8LazyEventListener.cpp180 v8::Local<v8::Object> thisObject = v8::Object::New(); in prepareListenerObject() local
181 if (thisObject.IsEmpty()) in prepareListenerObject()
183 if (!thisObject->ForceSet(v8::Integer::New(0, isolate), nodeWrapper)) in prepareListenerObject()
185 if (!thisObject->ForceSet(v8::Integer::New(1, isolate), formWrapper)) in prepareListenerObject()
187 if (!thisObject->ForceSet(v8::Integer::New(2, isolate), documentWrapper)) in prepareListenerObject()
191 …innerValue = V8ScriptRunner::callInternalFunction(intermediateFunction, thisObject, 0, 0, isolate); in prepareListenerObject()
DV8Callback.cpp44 bool invokeCallback(v8::Local<v8::Function> callback, v8::Handle<v8::Object> thisObject, int argc, … in invokeCallback() argument
48 ScriptController::callFunction(executionContext, callback, thisObject, argc, argv, isolate); in invokeCallback()
DV8MutationCallback.cpp76 v8::Handle<v8::Object> thisObject = v8::Handle<v8::Object>::Cast(observerHandle); in call() local
81 ScriptController::callFunction(executionContext(), callback, thisObject, 2, argv, m_isolate); in call()
DScriptFunctionCall.h65 ScriptFunctionCall(const ScriptObject& thisObject, const String& name);
DV8Callback.h45 bool invokeCallback(v8::Local<v8::Function> callback, v8::Handle<v8::Object> thisObject, int argc, …
DDebuggerScript.js339 var thisObject = frameMirror.details_.receiver();
394 "thisObject": thisObject,
/external/chromium_org/v8/test/mjsunit/compiler/
Dregress-serialized-slots.js37 Function.prototype.bind = function(thisObject) argument
45 thisObject,
/external/v8/test/mjsunit/compiler/
Dregress-serialized-slots.js37 Function.prototype.bind = function(thisObject) argument
45 thisObject,
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dbase.js274 forEach: function(callback, thisObject) argument
281 callback.call(thisObject || item, item, key, !!this._updated[key]);
284 purge: function(removeCallback, thisObject) { argument
289 removeCallback.call(thisObject || item, item);
Dbase_unittests.js288 var thisObject = {}
290 equal(this, thisObject);
291 }, thisObject);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DJavaScriptCallFrame.h62 v8::Handle<v8::Value> thisObject() const;
DInjectedScriptExterns.js132 this.thisObject;
DJavaScriptCallFrame.idl50 [Custom=Getter] readonly attribute object thisObject;
DInjectedScriptSource.js83 function bind(func, thisObject, var_args) argument
92 return func.apply(thisObject, args.concat(slice(arguments)));
1123 this.this = injectedScript._wrapObject(callFrame.thisObject, "backtrace");
DJavaScriptCallFrame.cpp118 v8::Handle<v8::Value> JavaScriptCallFrame::thisObject() const in thisObject() function in WebCore::JavaScriptCallFrame
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8JavaScriptCallFrameCustom.cpp67 v8SetReturnValue(info, impl->thisObject()); in thisObjectAttributeGetterCustom()
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
Ddojo-1.6.1.js2237 …unction(/*Boolean*/every, /*Array|String*/arr, /*Function|String*/callback, /*Object?*/thisObject){ argument
2238 var _p = _getParts(arr, thisObject, callback); arr = _p[0];
2290 … forEach: function(/*Array|String*/arr, /*Function|String*/callback, /*Object?*/thisObject){ argument
2351 var _p = _getParts(arr, thisObject, callback); arr = _p[0];
2357 … every: function(/*Array|String*/arr, /*Function|String*/callback, /*Object?*/thisObject){ argument
2380 return everyOrSome(true, arr, callback, thisObject); // Boolean
2383 … some: function(/*Array|String*/arr, /*Function|String*/callback, /*Object?*/thisObject){ argument
2406 return everyOrSome(false, arr, callback, thisObject); // Boolean
2409 … map: function(/*Array|String*/arr, /*Function|String*/callback, /*Function?*/thisObject){ argument
2431 var _p = _getParts(arr, thisObject, callback); arr = _p[0];
[all …]
/external/chromium_org/chrome_frame/
DCFInstance.js232 var forEach = function(arr, callback, thisObject) { argument
236 var parts = _getParts(arr, thisObject, callback);

12