/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
Object.js | 37 * @param {!Object=} thisObject 39 addEventListener: function(eventType, listener, thisObject) 48 this._listeners[eventType].push({ thisObject: thisObject, listener: listener }); 54 * @param {!Object=} thisObject 56 removeEventListener: function(eventType, listener, thisObject) 64 if (listeners[i].listener === listener && listeners[i].thisObject === thisObject) 101 listeners[i].listener.call(listeners[i].thisObject, event); 158 * @param {!Object=} thisObject [all...] |
Settings.js | 146 * @param {!Object=} thisObject 148 addChangeListener: function(listener, thisObject) 150 this._eventSupport.addEventListener(this._name, listener, thisObject); 155 * @param {!Object=} thisObject 157 removeChangeListener: function(listener, thisObject) 159 this._eventSupport.removeEventListener(this._name, listener, thisObject); 584 * @param {!Object=} thisObject 586 addChangeListener: function(listener, thisObject) 588 this._eventSupport.addEventListener(this._name, listener, thisObject); 593 * @param {!Object=} thisObject [all...] |
Progress.js | 76 * @param {!Object=} thisObject 78 addEventListener: function(eventType, listener, thisObject) { }
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
ThisObjectTest.java | 37 * JDWP Unit test for StackFrame.ThisObject command. 48 * This testcase exercises StackFrame.ThisObject command. 50 * checks if StackFrame.ThisObject command returns correct data for each stack frame 120 // get ThisObject 121 logWriter.println("==> Send StackFrame::ThisObject command..."); 131 TaggedObject thisObject = reply.getNextValueAsTaggedObject(); 132 logWriter.println("==> thisObject:"); 133 logWriter.println("==> tag=" + thisObject.tag + "(" 134 + JDWPConstants.Tag.getName(thisObject.tag) + ")"); 135 logWriter.println("==> id=" + thisObject.objectID) [all...] |
/external/chromium_org/ui/file_manager/file_manager/common/js/ |
error_util.js | 50 * @param {Object} thisObject Object to be used as this. 53 Function.prototype.wrap = function(thisObject) { 56 if (thisObject === undefined) 57 thisObject = null; 61 return func.apply(thisObject, arguments);
|
/external/chromium_org/ui/file_manager/video_player/js/ |
error_util.js | 24 * @param {Object} thisObject Object to be used as this. 28 Function.prototype.wrap = function(thisObject, var_args) { 31 if (thisObject === undefined) 32 thisObject = null; 38 return func.apply(thisObject, args);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
Context.js | 56 * @param {!Object=} thisObject 58 addFlavorChangeListener: function(flavorType, listener, thisObject) 65 dispatcher.addEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject); 71 * @param {!Object=} thisObject 73 removeFlavorChangeListener: function(flavorType, listener, thisObject) 78 dispatcher.removeEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
ScriptFunctionCall.h | 65 ScriptFunctionCall(const ScriptValue& thisObject, const String& name);
|
ScriptFunctionCall.cpp | 129 ScriptFunctionCall::ScriptFunctionCall(const ScriptValue& thisObject, const String& name) 130 : ScriptCallArgumentHandler(thisObject.scriptState()) 131 , m_thisObject(thisObject) 142 v8::Handle<v8::Object> thisObject = v8::Handle<v8::Object>::Cast(m_thisObject.v8Value()); 143 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name)); 158 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(function, m_scriptState->executionContext(), thisObject, m_arguments.size(), info.get(), m_scriptState->isolate()); 179 v8::Handle<v8::Object> thisObject = v8::Handle<v8::Object>::Cast(m_thisObject.v8Value()); 180 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name));
|
V8MutationCallback.cpp | 71 v8::Handle<v8::Object> thisObject = v8::Handle<v8::Object>::Cast(observerHandle); 76 ScriptController::callFunction(executionContext(), m_callback.newLocal(isolate), thisObject, WTF_ARRAY_LENGTH(argv), argv, isolate);
|
V8LazyEventListener.cpp | 187 v8::Local<v8::Object> thisObject = v8::Object::New(isolate()); 188 if (thisObject.IsEmpty()) 190 if (!thisObject->ForceSet(v8::Integer::New(isolate(), 0), nodeWrapper)) 192 if (!thisObject->ForceSet(v8::Integer::New(isolate(), 1), formWrapper)) 194 if (!thisObject->ForceSet(v8::Integer::New(isolate(), 2), documentWrapper)) 198 v8::Local<v8::Value> innerValue = V8ScriptRunner::callInternalFunction(intermediateFunction, thisObject, 0, 0, isolate());
|
DebuggerScript.js | 362 var thisObject = frameDetails.receiver(); 491 "thisObject": thisObject,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
ScopeChainSidebarPane.js | 83 var thisObject = callFrame.thisObject(); 84 if (thisObject) 85 extraProperties.push(new WebInspector.RemoteObjectProperty("this", thisObject));
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
Target.js | 273 /** @type {!Object.<string, !Array.<{modelClass: !Function, thisObject: (!Object|undefined), listener: function(!WebInspector.Event)}>>} */ 328 * @param {!Object=} thisObject 330 addModelListener: function(modelClass, eventType, listener, thisObject) 334 model.addEventListener(eventType, listener, thisObject); 338 this._modelListeners[eventType].push({ modelClass: modelClass, thisObject: thisObject, listener: listener }); 345 * @param {!Object=} thisObject 347 removeModelListener: function(modelClass, eventType, listener, thisObject) 354 model.removeEventListener(eventType, listener, thisObject); 359 if (listeners[i].modelClass === modelClass && listeners[i].listener === listener && listeners[i].thisObject === thisObject [all...] |
DebuggerModel.js | 704 * @param {!Object=} thisObject 706 addBreakpointListener: function(breakpointId, listener, thisObject) 708 this._breakpointResolvedEventTarget.addEventListener(breakpointId, listener, thisObject) 714 * @param {!Object=} thisObject 716 removeBreakpointListener: function(breakpointId, listener, thisObject) 718 this._breakpointResolvedEventTarget.removeEventListener(breakpointId, listener, thisObject); 953 thisObject: function() [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
regress-serialized-slots.js | 37 Function.prototype.bind = function(thisObject) 43 // Note outer function parameter access (|thisObject|). 45 thisObject,
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
JavaScriptCallFrame.idl | 51 [Custom=Getter] readonly attribute object thisObject;
|
JavaScriptCallFrame.h | 66 v8::Handle<v8::Value> thisObject() const;
|
JavaScriptCallFrame.cpp | 129 v8::Handle<v8::Value> JavaScriptCallFrame::thisObject() const 131 return m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "thisObject"));
|
InjectedScriptSource.js | 108 * @param {?Object} thisObject 112 function bind(func, thisObject, var_args) 121 return InjectedScriptHost.callFunction(func, thisObject, concat(args, slice(arguments))); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8JavaScriptCallFrameCustom.cpp | 67 v8SetReturnValue(info, impl->thisObject());
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
PresentationConsoleMessageHelper.js | 75 * @param {!Object=} thisObject 77 addConsoleMessageEventListener: function(eventType, uiSourceCode, listener, thisObject) 84 target.addEventListener(eventType, listener, thisObject); 91 * @param {!Object=} thisObject 93 removeConsoleMessageEventListener: function(eventType, uiSourceCode, listener, thisObject) 98 target.removeEventListener(eventType, listener, thisObject);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
OverviewGrid.js | 121 * @param {!Object=} thisObject 123 addEventListener: function(eventType, listener, thisObject) 125 this._window.addEventListener(eventType, listener, thisObject);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
dojo-1.6.1.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
ElementsTreeOutline.js | 346 addEventListener: function(eventType, listener, thisObject) 348 this._eventSupport.addEventListener(eventType, listener, thisObject); 351 removeEventListener: function(eventType, listener, thisObject) 353 this._eventSupport.removeEventListener(eventType, listener, thisObject); [all...] |