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

1 2 3

  /external/webkit/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
JSContextRef.h 1 #include <JavaScriptCore/API/JSContextRef.h>
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.h 33 typedef const struct OpaqueJSContext* JSContextRef;
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);
34 extern JSClassRef JSNode_class(JSContextRef context);
35 extern JSObjectRef JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
JSNodeList.c 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)
101 static JSClassRef JSNodeList_class(JSContextRef context)
120 JSObjectRef JSNodeList_new(JSContextRef context, NodeList* nodeList)
  /external/webkit/WebKit/mac/WebView/
WebJSPDFDoc.h 30 JSObjectRef makeJSPDFDoc(JSContextRef, WebDataSource *);
WebSerializedJSValue.h 27 typedef const struct OpaqueJSContext* JSContextRef;
35 - (id)initWithValue:(JSValueRef)object context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
36 - (JSValueRef)deserialize:(JSContextRef)destinationContext;
WebJSPDFDoc.mm 34 static void jsPDFDocInitialize(JSContextRef ctx, 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 35 typedef const struct OpaqueJSContext* JSContextRef;
38 JSObjectRef makeEventSender(JSContextRef context);
  /external/webkit/JavaScriptCore/API/
JSValueRef.h 65 JS_EXPORT JSType JSValueGetType(JSContextRef ctx, JSValueRef value);
74 JS_EXPORT bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value);
83 JS_EXPORT bool JSValueIsNull(JSContextRef ctx, JSValueRef value);
92 JS_EXPORT bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value);
101 JS_EXPORT bool JSValueIsNumber(JSContextRef ctx, JSValueRef value);
110 JS_EXPORT bool JSValueIsString(JSContextRef ctx, JSValueRef value);
119 JS_EXPORT bool JSValueIsObject(JSContextRef ctx, JSValueRef value);
129 JS_EXPORT bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass);
142 JS_EXPORT bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception);
152 JS_EXPORT bool JSValueIsStrictEqual(JSContextRef ctx, JSValueRef a, JSValueRef b)
    [all...]
JSProfilerPrivate.cpp 35 void JSStartProfiling(JSContextRef ctx, JSStringRef title)
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title)
JSProfilerPrivate.h 46 JS_EXPORT void JSStartProfiling(JSContextRef ctx, JSStringRef title);
57 JS_EXPORT void JSEndProfiling(JSContextRef ctx, JSStringRef title);
JSObjectRef.h 86 void Initialize(JSContextRef ctx, JSObjectRef object);
92 (*JSObjectInitializeCallback) (JSContextRef ctx, JSObjectRef object);
107 all functions that have a JSContextRef parameter.
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);
177 bool DeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
    [all...]
JSBase.h 38 /*! @typedef JSContextRef A JavaScript execution context. Holds the global object and other execution state. */
39 typedef const struct OpaqueJSContext* JSContextRef;
99 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
111 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
126 JS_EXPORT void JSGarbageCollect(JSContextRef ctx);
JSBasePrivate.h 46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_IN_WEBKIT_VERSION_4_0;
JavaScript.h 31 #include <JavaScriptCore/JSContextRef.h>
JSValueRef.cpp 47 ::JSType JSValueGetType(JSContextRef ctx, JSValueRef value)
68 bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value)
77 bool JSValueIsNull(JSContextRef ctx, JSValueRef value)
86 bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value)
95 bool JSValueIsNumber(JSContextRef ctx, JSValueRef value)
104 bool JSValueIsString(JSContextRef ctx, JSValueRef value)
113 bool JSValueIsObject(JSContextRef ctx, JSValueRef value)
122 bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass)
138 bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception)
155 bool JSValueIsStrictEqual(JSContextRef ctx, JSValueRef a, JSValueRef b
    [all...]
JSContextRefPrivate.h 47 JS_EXPORT JSGlobalContextRef JSContextGetGlobalContext(JSContextRef ctx);
JSContextRef.h 118 JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx);
126 JS_EXPORT JSContextGroupRef JSContextGetGroup(JSContextRef ctx) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  /external/webkit/WebKit/win/Interfaces/
JavaScriptCoreAPITypes.idl 32 typedef void* JSContextRef;
38 cpp_quote("typedef const struct OpaqueJSContext* JSContextRef;")
IWebSerializedJSValue.idl 38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
39 [local] HRESULT deserialize([in] JSContextRef context, [out, retval] JSValueRef* value);
  /external/webkit/WebKit/win/
WebSerializedJSValue.h 30 typedef const struct OpaqueJSContext* JSContextRef;
44 virtual HRESULT STDMETHODCALLTYPE serialize(JSContextRef, JSValueRef value, JSValueRef* exception);
45 virtual HRESULT STDMETHODCALLTYPE deserialize(JSContextRef, JSValueRef* result);
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityUIElement.cpp 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* exception)
69 static JSValueRef attributesOfColumnHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
75 static JSValueRef attributesOfRowHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
81 static JSValueRef attributesOfColumnsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
87 static JSValueRef attributesOfRowsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
93 static JSValueRef attributesOfVisibleCellsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef argu (…)
    [all...]
GCController.h 39 void 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*)

Completed in 155 milliseconds

1 2 3