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

1 2 3 4 5

  /external/webkit/Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
JSObjectRef.h 1 #include <JavaScriptCore/API/JSObjectRef.h>
  /external/webkit/Tools/DumpRenderTree/gtk/
PlainTextController.h 33 typedef struct OpaqueJSValue* JSObjectRef;
35 JSObjectRef makePlainTextController(JSContextRef);
TextInputController.h 33 typedef struct OpaqueJSValue* JSObjectRef;
35 JSObjectRef makeTextInputController(JSContextRef);
EventSender.h 34 typedef struct OpaqueJSValue* JSObjectRef;
36 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
PlainTextController.cpp 35 #include <JavaScriptCore/JSObjectRef.h>
40 static JSValueRef plainTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
51 JSObjectRef makePlainTextController(JSContextRef context)
  /external/webkit/Source/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);
  /external/webkit/Source/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/Tools/DumpRenderTree/win/
EventSender.h 36 typedef struct OpaqueJSValue* JSObjectRef;
38 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRefPrivate.h 29 #include <JavaScriptCore/JSObjectRef.h>
47 JS_EXPORT bool JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value);
57 JS_EXPORT JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
68 JS_EXPORT bool JSObjectDeletePrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
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>
JSWeakObjectMapRefPrivate.h 61 @abstract Associates a JSObjectRef with the given key in a JSWeakObjectMap.
67 JS_EXPORT void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void* key, JSObjectRef);
71 @abstract Retrieves the JSObjectRef associated with a key.
77 JS_EXPORT JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void* key);
  /external/webkit/Source/JavaScriptGlue/
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...]
JSValueWrapper.h 51 static JSObjectRef JSObjectCopyProperty(void *data, CFStringRef propertyName);
52 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
53 static JSObjectRef JSObjectCallFunction(void *data, JSObjectRef thisObj, CFArrayRef args);
testjsglue.cpp 47 JSObjectRef globalObject = JSRunCopyGlobalObject(jsRun);
49 JSObjectRef getX = JSObjectCopyProperty(globalObject, CFSTR("getX"));
50 JSObjectRef jsResult = JSObjectCallFunction(getX, globalObject, 0);
  /external/webkit/Tools/DumpRenderTree/
AccessibilityTextMarker.cpp 36 AccessibilityTextMarker* toTextMarker(JSObjectRef object)
41 static JSValueRef isMarkerEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
46 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
52 static void markerFinalize(JSObjectRef thisObject)
59 JSObjectRef AccessibilityTextMarker::makeJSAccessibilityTextMarker(JSContextRef context, const AccessibilityTextMarker& element)
88 AccessibilityTextMarkerRange* toTextMarkerRange(JSObjectRef object)
93 static JSValueRef isMarkerRangeEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
98 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception)
    [all...]
GCController.h 32 #include <JavaScriptCore/JSObjectRef.h>
39 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
AccessibilityController.h 30 #include <JavaScriptCore/JSObjectRef.h>
43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
57 void addNotificationListener(PlatformUIElement, JSObjectRef functionCallback);
69 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)
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.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*)
80 static JSValueRef logAccessibilityEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
JavaScriptCoreAPITypes.idl 33 typedef void* JSObjectRef;
37 cpp_quote("typedef struct OpaqueJSValue* JSObjectRef;")
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 43 inline bool objectHasOwnProperty(JSObjectRef object, JSStringRef property) const;
44 inline QVector<JSStringRef> objectGetOwnPropertyNames(JSObjectRef object) const;
52 inline bool isType(JSValueRef value, JSObjectRef constructor, JSValueRef prototype) const;
53 inline void initializeMember(JSObjectRef globalObject, JSStringRef prototypeName, const char* type, JSObjectRef& constructor, JSValueRef& prototype);
59 JSObjectRef m_arrayConstructor;
61 JSObjectRef m_errorConstructor;
63 JSObjectRef m_functionConstructor;
65 JSObjectRef m_dateConstructor;
69 JSObjectRef m_hasOwnPropertyFunction
    [all...]

Completed in 304 milliseconds

1 2 3 4 5