Home
last modified time | relevance | path

Searched refs:JSObjectGetPrivate (Results 1 – 18 of 18) sorted by relevance

/external/webkit/WebKitTools/DumpRenderTree/
DLayoutTestController.cpp76 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpAsTextCallback()
83 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpAsPDFCallback()
90 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpBackForwardListCallback()
97 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpChildFramesAsTextCallback()
104 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpChildFrameScrollPositionsCallback()
111 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpDatabaseCallbacksCallback()
118 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpDOMAsWebArchiveCallback()
125 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpEditingCallbacksCallback()
132 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpResourceLoadCallbacksCallback()
139 …LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObjec… in dumpResourceResponseMIMETypesCallback()
[all …]
DGCController.cpp47 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in collectCallback()
58 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in collectOnAlternateThreadCallback()
66 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject)); in getJSObjectCountCallback()
DAccessibilityController.cpp36 …AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thi… in getFocusedElementCallback()
42 …AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thi… in getRootElementCallback()
DAccessibilityUIElement.cpp36 return static_cast<AccessibilityUIElement*>(JSObjectGetPrivate(object)); in toAXElement()
/external/webkit/JavaScriptCore/API/tests/
DJSNode.c50 Node* node = JSObjectGetPrivate(thisObject); in JSNode_appendChild()
51 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], NULL)); in JSNode_appendChild()
67 Node* node = JSObjectGetPrivate(thisObject); in JSNode_removeChild()
68 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception)); in JSNode_removeChild()
86 Node* node = JSObjectGetPrivate(thisObject); in JSNode_replaceChild()
87 … Node* newChild = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception)); in JSNode_replaceChild()
88 … Node* oldChild = JSObjectGetPrivate(JSValueToObject(context, arguments[1], exception)); in JSNode_replaceChild()
111 Node* node = JSObjectGetPrivate(object); in JSNode_getNodeType()
127 Node* node = JSObjectGetPrivate(thisObject); in JSNode_getChildNodes()
152 Node* node = JSObjectGetPrivate(object); in JSNode_initialize()
[all …]
DJSNodeList.c38 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_item()
58 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_length()
70 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_getProperty()
87 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_initialize()
95 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_finalize()
Dtestapi.c512 ASSERT((void*)1 == JSObjectGetPrivate(object)); in Base_initialize()
522 ASSERT((void*)4 == JSObjectGetPrivate(object)); in Base_finalize()
593 ASSERT((void*)2 == JSObjectGetPrivate(object)); in Derived_initialize()
601 ASSERT((void*)3 == JSObjectGetPrivate(object)); in Derived_finalize()
734 ASSERT(JSObjectGetPrivate(o) == (void*)3); in testInitializeFinalize()
1044 ASSERT(!JSObjectGetPrivate(printFunction)); in main()
1052 ASSERT(!JSObjectGetPrivate(myConstructor)); in main()
/external/webkit/WebCore/inspector/
DJavaScriptProfileNode.cpp61 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getFunctionName()
71 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getURL()
81 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getLineNumber()
92 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getTotalTime()
103 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getSelfTime()
114 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getTotalPercent()
125 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getSelfPercent()
136 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getNumberOfCalls()
147 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getChildren()
194 ProfileNode* profileNode = static_cast<ProfileNode*>(JSObjectGetPrivate(thisObject)); in getParent()
[all …]
DJavaScriptProfile.cpp64 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in getTitleCallback()
74 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in getHeadCallback()
83 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in getUniqueIdCallback()
100 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in focus()
101 …profile->focus(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]))… in focus()
117 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in exclude()
118 …profile->exclude(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]… in exclude()
128 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); in restoreAll()
136 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(object)); in finalize()
/external/webkit/WebKit/win/WebKit.vcproj/
DWebKit.def49 JSObjectGetPrivate
DWebKit_debug.def49 JSObjectGetPrivate
DWebKit_Cairo.def50 JSObjectGetPrivate
DWebKit_Cairo_debug.def50 JSObjectGetPrivate
/external/webkit/JavaScriptCore/API/
DJSClassRef.cpp116 …ssContextData* jsClassData = static_cast<OpaqueJSClassContextData*>(JSObjectGetPrivate(prototype)); in clearReferenceToPrototype()
DJSObjectRef.h586 JS_EXPORT void* JSObjectGetPrivate(JSObjectRef object);
DJSObjectRef.cpp355 void* JSObjectGetPrivate(JSObjectRef object) in JSObjectGetPrivate() function
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-148725 (JSObjectGetPrivate):
9498 - Made JSObjectSetPrivate/JSObjectGetPrivate work on JSCallbackFunctions
9539 (JSObjectGetPrivate):
10304 (JSObjectGetPrivate):
DChangeLog-2008-08-1030212 (JSObjectGetPrivate):