HomeSort by relevance Sort by last modified time
    Searched refs:thisObject (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webkit/Source/WebCore/dom/
ActiveDOMObject.h 61 template<class T> void setPendingActivity(T* thisObject)
63 ASSERT(thisObject == this);
64 thisObject->ref();
68 template<class T> void unsetPendingActivity(T* thisObject)
72 thisObject->deref();
  /frameworks/wilhelm/src/itf/
I3DCommit.c 27 IObject *thisObject = InterfaceToIObject(thiz);
28 object_lock_exclusive(thisObject);
33 object_cond_wait(thisObject);
36 object_unlock_exclusive(thisObject);
48 IObject *thisObject = InterfaceToIObject(thiz);
49 object_lock_exclusive(thisObject);
51 object_unlock_exclusive(thisObject);
IDynamicInterfaceManagement.c 31 IObject *thisObject = InterfaceToIObject(thiz);
32 assert(NULL != thisObject);
34 const ClassTable *clazz = thisObject->mClass;
38 SLuint8 *interfaceStateP = &thisObject->mInterfaceStates[index];
42 object_lock_exclusive(thisObject);
50 object_unlock_exclusive(thisObject);
55 void *thisItf = (char *) thisObject + offset;
65 object_lock_exclusive(thisObject);
94 object_unlock_exclusive(thisObject);
115 IObject *thisObject = InterfaceToIObject(thiz)
    [all...]
IDynamicSource.c 38 IObject *thisObject = InterfaceToIObject(thiz);
39 object_lock_exclusive(thisObject);
42 object_unlock_exclusive(thisObject);
IMuteSolo.c 27 IObject *thisObject = thiz->mThis;
28 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
31 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
66 IObject *thisObject = thiz->mThis;
67 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
70 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
99 IObject *thisObject = thiz->mThis;
100 if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(thisObject)) {
103 CAudioPlayer *ap = (CAudioPlayer *) thisObject;
138 IObject *thisObject = thiz->mThis
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Object.js 30 addEventListener: function(eventType, listener, thisObject)
36 this._listeners[eventType].push({ thisObject: thisObject, listener: listener });
39 removeEventListener: function(eventType, listener, thisObject)
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)
    [all...]
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.cpp 39 static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
41 JSRetainPtr<JSStringRef> attributes(Adopt, toAXElement(thisObject)->allAttributes());
45 static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
47 JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfLinkedUIElements());
51 static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
53 JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfDocumentLinks());
57 static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
59 JSRetainPtr<JSStringRef> childrenDescription(Adopt, toAXElement(thisObject)->attributesOfChildren());
63 static JSValueRef parameterizedAttributeNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
65 JSRetainPtr<JSStringRef> parameterizedAttributeNames(Adopt, toAXElement(thisObject)->parameterizedAttributeNames())
    [all...]
AccessibilityTextMarker.cpp 41 static JSValueRef isMarkerEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
47 return JSValueMakeBoolean(context, toTextMarker(thisObject)->isEqual(toTextMarker(otherMarker)));
52 static void markerFinalize(JSObjectRef thisObject)
54 delete toTextMarker(thisObject);
93 static JSValueRef isMarkerRangeEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
99 return JSValueMakeBoolean(context, toTextMarkerRange(thisObject)->isEqual(toTextMarkerRange(otherMarker)));
104 static void markerRangeFinalize(JSObjectRef thisObject)
106 delete toTextMarkerRange(thisObject);
AccessibilityController.cpp 34 static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
36 AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
40 static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
42 AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
59 static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
61 AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
66 static JSValueRef logValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
68 AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
73 static JSValueRef logScrollingStartEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
75 AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
    [all...]
LayoutTestController.cpp 101 static JSValueRef dumpApplicationCacheDelegateCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
103 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
108 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
110 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
115 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
117 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
126 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
128 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
133 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
135 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
    [all...]
GCController.cpp 45 static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
47 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
52 static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
58 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
64 static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
66 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNodeList.c 33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
38 NodeList* nodeList = JSObjectGetPrivate(thisObject);
53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
58 NodeList* nodeList = JSObjectGetPrivate(thisObject);
68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
70 NodeList* nodeList = JSObjectGetPrivate(thisObject);
83 static void JSNodeList_initialize(JSContextRef context, JSObjectRef thisObject)
87 NodeList* nodeList = JSObjectGetPrivate(thisObject);
93 static void JSNodeList_finalize(JSObjectRef thisObject)
95 NodeList* nodeList = JSObjectGetPrivate(thisObject);
    [all...]
JSNode.c 36 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
41 if (!JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) {
50 Node* node = JSObjectGetPrivate(thisObject);
59 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
65 if (JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) {
67 Node* node = JSObjectGetPrivate(thisObject);
78 static JSValueRef JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
83 if (JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) {
86 Node* node = JSObjectGetPrivate(thisObject);
122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
StringRecursionChecker.h 31 StringRecursionChecker(ExecState*, JSObject* thisObject);
57 inline StringRecursionChecker::StringRecursionChecker(ExecState* exec, JSObject* thisObject)
59 , m_thisObject(thisObject)
RegExpPrototype.cpp 124 RegExpObject* thisObject = asRegExpObject(thisValue);
126 StringRecursionChecker checker(exec, thisObject);
132 if (thisObject->get(exec, exec->propertyNames().global).toBoolean(exec))
134 if (thisObject->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
136 if (thisObject->get(exec, exec->propertyNames().multiline).toBoolean(exec))
138 UString source = thisObject->get(exec, exec->propertyNames().source).toString(exec);
  /external/webkit/Source/WebCore/bindings/js/
JSJavaScriptCallFrameCustom.cpp 50 JSValue JSJavaScriptCallFrame::thisObject(ExecState*) const
52 return impl()->thisObject() ? JSValue(impl()->thisObject()) : jsNull();
JavaScriptCallFrame.cpp 94 JSObject* JavaScriptCallFrame::thisObject() const
99 return m_debuggerCallFrame.thisObject();
ScriptFunctionCall.cpp 117 ScriptFunctionCall::ScriptFunctionCall(const ScriptObject& thisObject, const String& name)
118 : ScriptCallArgumentHandler(thisObject.scriptState())
119 , m_thisObject(thisObject)
126 JSObject* thisObject = m_thisObject.jsObject();
130 JSValue function = thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name)));
144 JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData, thisObject, m_arguments);
164 JSObject* thisObject = m_thisObject.jsObject();
168 JSObject* constructor = asObject(thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name))));
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.h 56 JSObject* thisObject() const;
DebuggerCallFrame.cpp 73 JSObject* DebuggerCallFrame::thisObject() const
98 JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scopeChain());
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptfunction.cpp 33 static JSValueRef qt_NativeFunction_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
40 Q_UNUSED(thisObject);
93 static JSValueRef qt_NativeFunctionWithArg_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
100 Q_UNUSED(thisObject);
  /external/webkit/Source/WebKit/mac/WebView/
WebJSPDFDoc.mm 46 static JSValueRef jsPDFDocPrint(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
48 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(thisObject);
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 98 myQObject.somethingChanged.connect(thisObject, function)
106 myQObject.somethingChanged.disconnect(thisObject, function);
112 myQObject.somethingChanged.connect(thisObject, "functionName")
122 myQObject.somethingChanged.disconnect(thisObject, "functionName");
  /external/webkit/Source/WebCore/bindings/v8/
ScriptFunctionCall.cpp 108 ScriptFunctionCall::ScriptFunctionCall(const ScriptObject& thisObject, const String& name)
109 : ScriptCallArgumentHandler(thisObject.scriptState())
110 , m_thisObject(thisObject)
119 v8::Local<v8::Object> thisObject = m_thisObject.v8Object();
120 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name));
133 v8::Local<v8::Value> result = function->Call(thisObject, m_arguments.size(), args.get());
152 v8::Local<v8::Object> thisObject = m_thisObject.v8Object();
153 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name));
  /external/webkit/Source/WebCore/inspector/
JavaScriptCallFrame.idl 49 readonly attribute [CustomGetter] Object thisObject;

Completed in 419 milliseconds

1 2 3