Searched refs:JSContextRef (Results 1 - 25 of 107) sorted by relevance

12345

/external/webkit/Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
H A DJSContextRef.h1 #include <JavaScriptCore/API/JSContextRef.h>
/external/webkit/Tools/DumpRenderTree/gtk/
H A DPlainTextController.h32 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
35 JSObjectRef makePlainTextController(JSContextRef);
H A DTextInputController.h32 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
35 JSObjectRef makeTextInputController(JSContextRef);
H A DEventSender.h33 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
36 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNodeList.h32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
H A DJSNode.h33 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);
/external/webkit/Source/JavaScriptCore/API/
H A DJSValueRef.h66 JS_EXPORT JSType JSValueGetType(JSContextRef ctx, JSValueRef value);
75 JS_EXPORT bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value);
84 JS_EXPORT bool JSValueIsNull(JSContextRef ctx, JSValueRef value);
93 JS_EXPORT bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value);
102 JS_EXPORT bool JSValueIsNumber(JSContextRef ctx, JSValueRef value);
111 JS_EXPORT bool JSValueIsString(JSContextRef ctx, JSValueRef value);
120 JS_EXPORT bool JSValueIsObject(JSContextRef ctx, JSValueRef value);
130 JS_EXPORT bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass);
143 JS_EXPORT bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception);
153 JS_EXPORT bool JSValueIsStrictEqual(JSContextRef ct
[all...]
H A DJSWeakObjectMapRefPrivate.h29 #include <JavaScriptCore/JSContextRef.h>
57 JS_EXPORT JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef ctx, void* data, JSWeakMapDestroyedCallback destructor);
67 JS_EXPORT void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void* key, JSObjectRef);
77 JS_EXPORT JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void* key);
H A DJSObjectRefPrivate.h47 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);
H A DJSProfilerPrivate.cpp35 void JSStartProfiling(JSContextRef ctx, JSStringRef title)
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title)
H A DJSProfilerPrivate.h46 JS_EXPORT void JSStartProfiling(JSContextRef ctx, JSStringRef title);
57 JS_EXPORT void JSEndProfiling(JSContextRef ctx, JSStringRef title);
H A DJSObjectRef.h86 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 ct
[all...]
H A DJSBasePrivate.h46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_IN_WEBKIT_VERSION_4_0;
H A DJavaScript.h31 #include <JavaScriptCore/JSContextRef.h>
H A DJSWeakObjectMapRefPrivate.cpp44 JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef context, void* privateData, JSWeakMapDestroyedCallback callback)
53 void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void* key, JSObjectRef object)
64 JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void* key)
72 JS_EXPORT bool JSWeakObjectMapClear(JSContextRef, JSWeakObjectMapRef, void*, JSObjectRef);
73 bool JSWeakObjectMapClear(JSContextRef, JSWeakObjectMapRef, void*, JSObjectRef)
H A DJSBase.h38 /*! @typedef JSContextRef A JavaScript execution context. Holds the global object and other execution state. */
39 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
117 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
132 JS_EXPORT void JSGarbageCollect(JSContextRef ctx);
H A DJSContextRefPrivate.h47 JS_EXPORT JSGlobalContextRef JSContextGetGlobalContext(JSContextRef ctx);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebJSPDFDoc.h30 JSObjectRef makeJSPDFDoc(JSContextRef, WebDataSource *);
H A DWebSerializedJSValue.h27 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
35 - (id)initWithValue:(JSValueRef)object context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
36 - (JSValueRef)deserialize:(JSContextRef)destinationContext;
/external/webkit/Tools/DumpRenderTree/win/
H A DEventSender.h35 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
38 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
/external/webkit/Source/WebKit/win/Interfaces/
H A DJavaScriptCoreAPITypes.idl32 typedef void* JSContextRef;
38 cpp_quote("typedef const struct OpaqueJSContext* JSContextRef;")
H A DIWebSerializedJSValue.idl38 [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/Source/WebKit2/Shared/API/c/
H A DWKSerializedScriptValue.h38 WK_EXPORT WKSerializedScriptValueRef WKSerializedScriptValueCreate(JSContextRef context, JSValueRef value, JSValueRef* exception);
39 WK_EXPORT JSValueRef WKSerializedScriptValueDeserialize(WKSerializedScriptValueRef scriptValue, JSContextRef context, JSValueRef* exception);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DJSWrapper.h37 static JSValueRef wrap(JSContextRef context, JSWrappable* object);
38 static JSWrappable* unwrap(JSContextRef context, JSValueRef value);
40 static void initialize(JSContextRef, JSObjectRef);
44 inline JSValueRef toJS(JSContextRef context, JSWrappable* impl)
49 inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception)
/external/webkit/Source/WebKit/win/
H A DWebSerializedJSValue.h31 typedef const struct OpaqueJSContext* JSContextRef; typedef in typeref:struct:OpaqueJSContext
46 virtual HRESULT STDMETHODCALLTYPE serialize(JSContextRef, JSValueRef value, JSValueRef* exception);
47 virtual HRESULT STDMETHODCALLTYPE deserialize(JSContextRef, JSValueRef* result);

Completed in 1670 milliseconds

12345