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

1 2 3 4

  /external/webkit/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
JSObjectRef.h 1 #include <JavaScriptCore/API/JSObjectRef.h>
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.h 34 typedef struct OpaqueJSValue* JSObjectRef;
36 JSObjectRef makeEventSender(JSContextRef context);
  /external/webkit/JavaScriptCore/API/tests/
JSNodeList.h 32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
JSNode.h 33 extern JSObjectRef JSNode_new(JSContextRef context, Node* node);
35 extern JSObjectRef JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
JSNodeList.c 28 #include "JSObjectRef.h"
33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
83 static void JSNodeList_initialize(JSContextRef context, JSObjectRef thisObject)
93 static void JSNodeList_finalize(JSObjectRef thisObject)
120 JSObjectRef JSNodeList_new(JSContextRef context, NodeList* nodeList)
JSNode.c 28 #include "JSObjectRef.h"
36 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
59 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
78 static JSValueRef JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
106 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
132 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebJSPDFDoc.h 30 JSObjectRef makeJSPDFDoc(JSContextRef, WebDataSource *);
WebJSPDFDoc.mm 32 #import <JavaScriptCore/JSObjectRef.h>
34 static void jsPDFDocInitialize(JSContextRef ctx, JSObjectRef object)
40 static void jsPDFDocFinalize(JSObjectRef object)
46 static JSValueRef jsPDFDocPrint(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
71 JSObjectRef makeJSPDFDoc(JSContextRef ctx, WebDataSource *dataSource)
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.h 36 typedef struct OpaqueJSValue* JSObjectRef;
38 JSObjectRef makeEventSender(JSContextRef context);
  /external/webkit/JavaScriptGlue/
JSValueWrapper.h 50 static JSObjectRef JSObjectCopyProperty(void *data, CFStringRef propertyName);
51 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
52 static JSObjectRef JSObjectCallFunction(void *data, JSObjectRef thisObj, CFArrayRef args);
JavaScriptGlue.h 52 typedef JSTypeRef JSObjectRef DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
58 typedef JSObjectRef (*JSObjectCopyPropertyProcPtr)(void *data, CFStringRef propertyName) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
59 typedef void (*JSObjectSetPropertyProcPtr)(void *data, CFStringRef propertyName, JSObjectRef jsValue) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
60 typedef JSObjectRef (*JSObjectCallFunctionProcPtr)(void *data, JSObjectRef thisObj, CFArrayRef args) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
86 JSObjectRef JSObjectCreate(void *data, JSObjectCallBacksPtr callBacks) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
87 JSObjectRef JSObjectCreateWithCFType(CFTypeRef inRef) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
88 CFTypeRef JSObjectCopyCFValue(JSObjectRef ref) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
89 void *JSObjectGetData(JSObjectRef ref) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
91 CFArrayRef JSObjectCopyPropertyNames(JSObjectRef ref) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER
    [all...]
testjsglue.cpp 47 JSObjectRef globalObject = JSRunCopyGlobalObject(jsRun);
49 JSObjectRef getX = JSObjectCopyProperty(globalObject, CFSTR("getX"));
50 JSObjectRef jsResult = JSObjectCallFunction(getX, globalObject, 0);
JavaScriptGlue.cpp 41 static JSObjectRef CFJSObjectCopyProperty(void *data, CFStringRef propertyName);
42 static void CFJSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
150 JSObjectRef JSObjectCreate(void *data, JSObjectCallBacksPtr callBacks)
152 JSObjectRef result = JSObjectCreateInternal(data, callBacks, 0, kJSUserObjectDataTypeUnknown);
159 JSObjectRef JSObjectCreateInternal(void *data, JSObjectCallBacksPtr callBacks, JSObjectMarkProcPtr markProc, int type)
161 JSObjectRef result = 0;
163 result = (JSObjectRef)ptr;
170 CFTypeRef JSObjectCopyCFValue(JSObjectRef ref)
184 void *JSObjectGetData(JSObjectRef ref)
199 JSObjectRef JSObjectCopyProperty(JSObjectRef ref, CFStringRef propertyName
    [all...]
  /external/webkit/JavaScriptCore/API/
JSObjectRef.h 86 void Initialize(JSContextRef ctx, JSObjectRef object);
92 (*JSObjectInitializeCallback) (JSContextRef ctx, JSObjectRef object);
100 void Finalize(JSObjectRef object);
110 (*JSObjectFinalizeCallback) (JSObjectRef object);
121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
130 (*JSObjectHasPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
142 JSValueRef GetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
147 (*JSObjectGetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
160 bool SetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
165 (*JSObjectSetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
    [all...]
JavaScript.h 33 #include <JavaScriptCore/JSObjectRef.h>
JSContextRefPrivate.h 29 #include <JavaScriptCore/JSObjectRef.h>
  /external/webkit/WebKit/win/Interfaces/
JavaScriptCoreAPITypes.idl 33 typedef void* JSObjectRef;
37 cpp_quote("typedef struct OpaqueJSValue* JSObjectRef;")
  /external/webkit/WebKitTools/DumpRenderTree/
GCController.h 32 #include <JavaScriptCore/JSObjectRef.h>
39 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
AccessibilityUIElement.cpp 33 static inline AccessibilityUIElement* toAXElement(JSObjectRef object)
39 static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
45 static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
51 static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
57 static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
63 static JSValueRef parameterizedAttributeNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* (…)
    [all...]
AccessibilityController.h 30 #include <JavaScriptCore/JSObjectRef.h>
43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
55 void addNotificationListener(PlatformUIElement, JSObjectRef functionCallback);
67 HashMap<PlatformUIElement, JSObjectRef> m_notificationListeners;
GCController.cpp 32 #include <JavaScriptCore/JSObjectRef.h>
45 static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
52 static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
64 static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
74 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
AccessibilityController.cpp 34 static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
40 static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
48 void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
59 static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
66 static JSValueRef logValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
73 static JSValueRef logScrollingStartEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
LayoutTestController.cpp 35 #include <JavaScriptCore/JSObjectRef.h>
84 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
91 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
98 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
105 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
112 static JSValueRef dumpChildFrameScrollPositionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* (…)
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 34 #include <JavaScriptCore/JSObjectRef.h>
59 static JSValueRef getTitleCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
68 static JSValueRef getHeadCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
78 static JSValueRef getUniqueIdCallback(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
89 static JSValueRef focus(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/)
101 profile->focus(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]))));
106 static JSValueRef exclude(JSContextRef ctx, JSObjectRef /*function*/, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* /*exception*/)
118 profile->exclude(static_cast<ProfileNode*>(JSObjectGetPrivate(const_cast<JSObjectRef>(arguments[0]))))
    [all...]
JavaScriptProfileNode.cpp 34 #include <JavaScriptCore/JSObjectRef.h>
56 static JSValueRef getFunctionName(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
66 static JSValueRef getURL(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
76 static JSValueRef getLineNumber(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
85 static JSValueRef getTotalTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
96 static JSValueRef getSelfTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
107 static JSValueRef getNumberOfCalls(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
118 static JSValueRef getChildren(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef* exception)
128 JSObjectRef global = JSContextGetGlobalObject(ctx);
136 JSObjectRef arrayConstructor = JSValueToObject(ctx, arrayProperty, exception)
    [all...]

Completed in 242 milliseconds

1 2 3 4