Home
last modified time | relevance | path

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

123

/external/webkit/Tools/DumpRenderTree/
DAccessibilityUIElement.cpp39 …ibutesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in allAttributesCallback() argument
41 JSRetainPtr<JSStringRef> attributes(Adopt, toAXElement(thisObject)->allAttributes()); in allAttributesCallback()
45 …ementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in attributesOfLinkedUIElementsCallback() argument
47 …JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfLinkedUIE… in attributesOfLinkedUIElementsCallback()
51 …tLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in attributesOfDocumentLinksCallback() argument
53 …JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfDocumentL… in attributesOfDocumentLinksCallback()
57 …ildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in attributesOfChildrenCallback() argument
59 …JSRetainPtr<JSStringRef> childrenDescription(Adopt, toAXElement(thisObject)->attributesOfChildren(… in attributesOfChildrenCallback()
63 …eNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in parameterizedAttributeNamesCallback() argument
65 …JSRetainPtr<JSStringRef> parameterizedAttributeNames(Adopt, toAXElement(thisObject)->parameterized… in parameterizedAttributeNamesCallback()
[all …]
DLayoutTestController.cpp101 …lbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dumpApplicationCacheDelegateCallbacksCallback() argument
103 …outTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); in dumpApplicationCacheDelegateCallbacksCallback()
108 …pAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dumpAsPDFCallback() argument
110 …outTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); in dumpAsPDFCallback()
115 …AsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dumpAsTextCallback() argument
117 …outTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); in dumpAsTextCallback()
126 …rdListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dumpBackForwardListCallback() argument
128 …outTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); in dumpBackForwardListCallback()
133 …AsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dumpChildFramesAsTextCallback() argument
135 …outTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject)); in dumpChildFramesAsTextCallback()
[all …]
DAccessibilityController.cpp34 static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringR… in getFocusedElementCallback() argument
36 …lityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject)); in getFocusedElementCallback()
40 static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef … in getRootElementCallback() argument
42 …lityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject)); in getRootElementCallback()
59 static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, siz… in logFocusEventsCallback() argument
61 …lityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject)); in logFocusEventsCallback()
66 …ogValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const J… in logValueChangeEventsCallback() argument
68 …lityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject)); in logValueChangeEventsCallback()
73 …crollingStartEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const J… in logScrollingStartEventsCallback() argument
75 …lityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject)); in logScrollingStartEventsCallback()
[all …]
DAccessibilityTextMarker.cpp41 …rEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in isMarkerEqualCallback() argument
47 … return JSValueMakeBoolean(context, toTextMarker(thisObject)->isEqual(toTextMarker(otherMarker))); in isMarkerEqualCallback()
52 static void markerFinalize(JSObjectRef thisObject) in markerFinalize() argument
54 delete toTextMarker(thisObject); in markerFinalize()
93 …eEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in isMarkerRangeEqualCallback() argument
99 …return JSValueMakeBoolean(context, toTextMarkerRange(thisObject)->isEqual(toTextMarkerRange(otherM… in isMarkerRangeEqualCallback()
104 static void markerRangeFinalize(JSObjectRef thisObject) in markerRangeFinalize() argument
106 delete toTextMarkerRange(thisObject); in markerRangeFinalize()
DGCController.cpp45 …ollectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in collectCallback() argument
47 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in collectCallback()
52 …ThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in collectOnAlternateThreadCallback() argument
58 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in collectOnAlternateThreadCallback()
64 …tCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in getJSObjectCountCallback() argument
66 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in getJSObjectCountCallback()
/external/webkit/Source/WebCore/inspector/front-end/
DObject.js30 addEventListener: function(eventType, listener, thisObject) argument
36 this._listeners[eventType].push({ thisObject: thisObject, listener: listener }); property
39 removeEventListener: function(eventType, listener, thisObject) argument
45 … if (listener && listeners[i].listener === listener && listeners[i].thisObject === thisObject)
47 else if (!listener && thisObject && listeners[i].thisObject === thisObject)
90 listeners[i].listener.call(listeners[i].thisObject, event);
/external/webkit/Source/JavaScriptCore/API/tests/
DJSNodeList.c33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject,… in JSNodeList_item() argument
38 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_item()
53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef prope… in JSNodeList_length() argument
58 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_length()
68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef … in JSNodeList_getProperty() argument
70 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_getProperty()
83 static void JSNodeList_initialize(JSContextRef context, JSObjectRef thisObject) in JSNodeList_initialize() argument
87 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_initialize()
93 static void JSNodeList_finalize(JSObjectRef thisObject) in JSNodeList_finalize() argument
95 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_finalize()
DJSNode.c36 …de_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in JSNode_appendChild() argument
41 if (!JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) { in JSNode_appendChild()
50 Node* node = JSObjectGetPrivate(thisObject); in JSNode_appendChild()
59 …de_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in JSNode_removeChild() argument
65 if (JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) { in JSNode_removeChild()
67 Node* node = JSObjectGetPrivate(thisObject); in JSNode_removeChild()
78 …e_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in JSNode_replaceChild() argument
83 if (JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) { in JSNode_replaceChild()
86 Node* node = JSObjectGetPrivate(thisObject); in JSNode_replaceChild()
122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef pr… in JSNode_getChildNodes() argument
[all …]
Dminidom.c37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t ar…
82 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t ar… in print() argument
85 UNUSED_PARAM(thisObject); in print()
/external/webkit/Source/WebCore/dom/
DActiveDOMObject.h61 template<class T> void setPendingActivity(T* thisObject) in setPendingActivity() argument
63 ASSERT(thisObject == this); in setPendingActivity()
64 thisObject->ref(); in setPendingActivity()
68 template<class T> void unsetPendingActivity(T* thisObject) in unsetPendingActivity() argument
72 thisObject->deref(); in unsetPendingActivity()
/external/webkit/Source/WebCore/bindings/js/
DScriptFunctionCall.cpp117 ScriptFunctionCall::ScriptFunctionCall(const ScriptObject& thisObject, const String& name) in ScriptFunctionCall() argument
118 : ScriptCallArgumentHandler(thisObject.scriptState()) in ScriptFunctionCall()
119 , m_thisObject(thisObject) in ScriptFunctionCall()
126 JSObject* thisObject = m_thisObject.jsObject(); in call() local
130 JSValue function = thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name))); in call()
144 …JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData, thisObject, m_a… in call()
164 JSObject* thisObject = m_thisObject.jsObject(); in construct() local
168 …JSObject* constructor = asObject(thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name… in construct()
DJSJavaScriptCallFrameCustom.cpp50 JSValue JSJavaScriptCallFrame::thisObject(ExecState*) const in thisObject() function in WebCore::JSJavaScriptCallFrame
52 return impl()->thisObject() ? JSValue(impl()->thisObject()) : jsNull(); in thisObject()
DJavaScriptCallFrame.cpp94 JSObject* JavaScriptCallFrame::thisObject() const in thisObject() function in WebCore::JavaScriptCallFrame
99 return m_debuggerCallFrame.thisObject(); in thisObject()
/external/webkit/Source/WebCore/bindings/v8/
DScriptFunctionCall.cpp108 ScriptFunctionCall::ScriptFunctionCall(const ScriptObject& thisObject, const String& name) in ScriptFunctionCall() argument
109 : ScriptCallArgumentHandler(thisObject.scriptState()) in ScriptFunctionCall()
110 , m_thisObject(thisObject) in ScriptFunctionCall()
119 v8::Local<v8::Object> thisObject = m_thisObject.v8Object(); in call() local
120 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name)); in call()
133 v8::Local<v8::Value> result = function->Call(thisObject, m_arguments.size(), args.get()); in call()
152 v8::Local<v8::Object> thisObject = m_thisObject.v8Object(); in construct() local
153 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name)); in construct()
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
DJSTestObj.cpp612 void setJSTestObjShortAttr(ExecState* exec, JSObject* thisObject, JSValue value) in setJSTestObjShortAttr() argument
614 JSTestObj* castedThis = static_cast<JSTestObj*>(thisObject); in setJSTestObjShortAttr()
619 void setJSTestObjUnsignedShortAttr(ExecState* exec, JSObject* thisObject, JSValue value) in setJSTestObjUnsignedShortAttr() argument
621 JSTestObj* castedThis = static_cast<JSTestObj*>(thisObject); in setJSTestObjUnsignedShortAttr()
626 void setJSTestObjIntAttr(ExecState* exec, JSObject* thisObject, JSValue value) in setJSTestObjIntAttr() argument
628 JSTestObj* castedThis = static_cast<JSTestObj*>(thisObject); in setJSTestObjIntAttr()
633 void setJSTestObjLongLongAttr(ExecState* exec, JSObject* thisObject, JSValue value) in setJSTestObjLongLongAttr() argument
635 JSTestObj* castedThis = static_cast<JSTestObj*>(thisObject); in setJSTestObjLongLongAttr()
640 void setJSTestObjUnsignedLongLongAttr(ExecState* exec, JSObject* thisObject, JSValue value) in setJSTestObjUnsignedLongLongAttr() argument
642 JSTestObj* castedThis = static_cast<JSTestObj*>(thisObject); in setJSTestObjUnsignedLongLongAttr()
[all …]
/external/webkit/Source/JavaScriptCore/runtime/
DRegExpPrototype.cpp124 RegExpObject* thisObject = asRegExpObject(thisValue); in regExpProtoFuncToString() local
126 StringRecursionChecker checker(exec, thisObject); in regExpProtoFuncToString()
132 if (thisObject->get(exec, exec->propertyNames().global).toBoolean(exec)) in regExpProtoFuncToString()
134 if (thisObject->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec)) in regExpProtoFuncToString()
136 if (thisObject->get(exec, exec->propertyNames().multiline).toBoolean(exec)) in regExpProtoFuncToString()
138 UString source = thisObject->get(exec, exec->propertyNames().source).toString(exec); in regExpProtoFuncToString()
DStringRecursionChecker.h31 StringRecursionChecker(ExecState*, JSObject* thisObject);
57 inline StringRecursionChecker::StringRecursionChecker(ExecState* exec, JSObject* thisObject) in StringRecursionChecker() argument
59 , m_thisObject(thisObject) in StringRecursionChecker()
/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptfunction.cpp33 …n_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argument… in qt_NativeFunction_callAsFunction() argument
40 Q_UNUSED(thisObject); in qt_NativeFunction_callAsFunction()
93 …g_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argument… in qt_NativeFunctionWithArg_callAsFunction() argument
100 Q_UNUSED(thisObject); in qt_NativeFunctionWithArg_callAsFunction()
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
Dqtwebkit_bridge_snippets.cpp98 myQObject.somethingChanged.connect(thisObject, function) in wrapInFunction()
106 myQObject.somethingChanged.disconnect(thisObject, function); in wrapInFunction()
112 myQObject.somethingChanged.connect(thisObject, "functionName") in wrapInFunction()
122 myQObject.somethingChanged.disconnect(thisObject, "functionName"); in wrapInFunction()
/external/webkit/Tools/DumpRenderTree/gtk/
DEventSender.cpp104 …orwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in leapForwardCallback() argument
167 …mClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in menuItemClickCallback() argument
169 GtkMenuItem* item = GTK_MENU_ITEM(JSObjectGetPrivate(thisObject)); in menuItemClickCallback()
202 …tClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in contextClickCallback() argument
249 …sClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in scheduleAsynchronousClickCallback() argument
305 …seDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseDownCallback() argument
349 …ouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseUpCallback() argument
372 …MoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseMoveToCallback() argument
406 …rollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseScrollByCallback() argument
445 …rollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in continuousMouseScrollByCallback() argument
[all …]
DTextInputController.cpp41 …edTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in setMarkedTextCallback() argument
69 …rtTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in insertTextCallback() argument
91 …rkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in unmarkTextCallback() argument
101 …rRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in firstRectForCharacterRangeCallback() argument
131 …dRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in selectedRangeCallback() argument
/external/webkit/Tools/DumpRenderTree/win/
DEventSender.cpp96 …orwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in leapForwardCallback() argument
131 …tClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in contextClickCallback() argument
171 …seDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseDownCallback() argument
262 …ouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseUpCallback() argument
329 …MoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in mouseMoveToCallback() argument
433 …eyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in keyDownCallback() argument
541 …essageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in dispatchMessageCallback() argument
577 …ZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in textZoomInCallback() argument
591 …oomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in textZoomOutCallback() argument
605 …PageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argument… in zoomPageInCallback() argument
[all …]
/external/v8/test/mjsunit/compiler/
Dregress-serialized-slots.js37 Function.prototype.bind = function(thisObject) argument
45 thisObject,
/external/webkit/Source/JavaScriptCore/debugger/
DDebuggerCallFrame.cpp73 JSObject* DebuggerCallFrame::thisObject() const in thisObject() function in JSC::DebuggerCallFrame
98 …JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->sco… in evaluate()
/external/webkit/Source/JavaScriptCore/API/
DJSBase.cpp45 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringR… in JSEvaluateScript() argument
50 JSObject* jsThisObject = toJS(thisObject); in JSEvaluateScript()

123