Searched refs:JSGlobalContextRef (Results 1 - 25 of 65) sorted by relevance

123

/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DJavaScriptVariant_p.h30 JavaScriptVariant JSValueRefToBlackBerryJavaScriptVariant(const JSGlobalContextRef&, const JSValueRef&);
31 JSValueRef BlackBerryJavaScriptVariantToJSValueRef(const JSGlobalContextRef&, const JavaScriptVariant&);
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSContextRef.h81 JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
95 JS_EXPORT JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) AVAILABLE_IN_WEBKIT_VERSION_4_0;
103 JS_EXPORT JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx);
110 JS_EXPORT void JSGlobalContextRelease(JSGlobalContextRef ctx);
H A DJSValueInternal.h42 id valueToNumber(JSGlobalContextRef, JSValueRef, JSValueRef* exception);
43 id valueToString(JSGlobalContextRef, JSValueRef, JSValueRef* exception);
44 id valueToDate(JSGlobalContextRef, JSValueRef, JSValueRef* exception);
45 id valueToArray(JSGlobalContextRef, JSValueRef, JSValueRef* exception);
46 id valueToDictionary(JSGlobalContextRef, JSValueRef, JSValueRef* exception);
H A DJSContext.h122 + (JSContext *)contextWithJSGlobalContextRef:(JSGlobalContextRef)jsGlobalContextRef;
124 - (JSGlobalContextRef)JSGlobalContextRef;
H A DJSVirtualMachineInternal.h45 - (JSContext *)contextForGlobalContextRef:(JSGlobalContextRef)globalContext;
46 - (void)addContext:(JSContext *)wrapper forGlobalContextRef:(JSGlobalContextRef)globalContext;
H A DJSValue.mm74 return [JSValue valueWithJSValueRef:JSValueMakeBoolean([context JSGlobalContextRef], value) inContext:context];
79 return [JSValue valueWithJSValueRef:JSValueMakeNumber([context JSGlobalContextRef], value) inContext:context];
84 return [JSValue valueWithJSValueRef:JSValueMakeNumber([context JSGlobalContextRef], value) inContext:context];
89 return [JSValue valueWithJSValueRef:JSValueMakeNumber([context JSGlobalContextRef], value) inContext:context];
94 return [JSValue valueWithJSValueRef:JSObjectMake([context JSGlobalContextRef], 0, 0) inContext:context];
99 return [JSValue valueWithJSValueRef:JSObjectMakeArray([context JSGlobalContextRef], 0, NULL, 0) inContext:context];
106 JSValueRef arguments[2] = { JSValueMakeString([context JSGlobalContextRef], patternString), JSValueMakeString([context JSGlobalContextRef], flagsString) };
110 return [JSValue valueWithJSValueRef:JSObjectMakeRegExp([context JSGlobalContextRef], 2, arguments, 0) inContext:context];
116 JSValueRef argument = JSValueMakeString([context JSGlobalContextRef], strin
[all...]
H A DJSWrapperMap.h42 id tryUnwrapObjcObject(JSGlobalContextRef, JSValueRef);
H A DJSContextRefPrivate.h47 JS_EXPORT JSGlobalContextRef JSContextGetGlobalContext(JSContextRef ctx);
H A DAPICast.h43 typedef struct OpaqueJSContext* JSGlobalContextRef; typedef in typeref:struct:OpaqueJSContext
56 inline JSC::ExecState* toJS(JSGlobalContextRef c)
153 inline JSGlobalContextRef toGlobalRef(JSC::ExecState* e)
156 return reinterpret_cast<JSGlobalContextRef>(e);
H A DObjCCallbackFunction.mm60 bool value = JSValueToBoolean([context JSGlobalContextRef], argument);
69 T value = (T)JSC::toInt32(JSValueToNumber([context JSGlobalContextRef], argument, exception));
78 T value = (T)JSValueToNumber([context JSGlobalContextRef], argument, exception);
116 JSGlobalContextRef contextRef = [context JSGlobalContextRef];
139 id value = valueToNumber([context JSGlobalContextRef], argument, exception);
147 id value = valueToString([context JSGlobalContextRef], argument, exception);
155 id value = valueToDate([context JSGlobalContextRef], argument, exception);
163 id value = valueToArray([context JSGlobalContextRef], argument, exception);
171 id value = valueToDictionary([context JSGlobalContextRef], argumen
[all...]
H A DJSContextRef.cpp112 JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass)
127 JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass)
150 JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx)
161 void JSGlobalContextRelease(JSGlobalContextRef ctx)
203 JSGlobalContextRef JSContextGetGlobalContext(JSContextRef ctx)
H A DJSVirtualMachine.mm130 id temp = tryUnwrapObjcObject([value.context JSGlobalContextRef], [value JSValueRef]);
138 object = tryUnwrapObjcObject([value.context JSGlobalContextRef], [value JSValueRef]);
210 - (JSContext *)contextForGlobalContextRef:(JSGlobalContextRef)globalContext
215 - (void)addContext:(JSContext *)wrapper forGlobalContextRef:(JSGlobalContextRef)globalContext
H A DJSBase.h45 /*! @typedef JSGlobalContextRef A global JavaScript execution context. A JSGlobalContext is a JSContext. */
46 typedef struct OpaqueJSContext* JSGlobalContextRef; typedef in typeref:struct:OpaqueJSContext
H A DJSContextInternal.h62 - (id)initWithGlobalContextRef:(JSGlobalContextRef)context;
H A DJSWrapperMap.mm119 JSObjectRef result = makeWrapper([context JSGlobalContextRef], classRef, cls);
337 JSContextRef cContext = [m_context JSGlobalContextRef];
362 JSContextRef cContext = [m_context JSGlobalContextRef];
376 JSObjectSetPrototype([m_context JSGlobalContextRef], toRef(m_prototype.get()), toRef(superClassInfo->m_prototype.get()));
398 JSObjectRef wrapper = makeWrapper([m_context JSGlobalContextRef], m_classRef, object);
399 JSObjectSetPrototype([m_context JSGlobalContextRef], wrapper, toRef(m_prototype.get()));
477 JSC::ExecState* exec = toJS([m_context JSGlobalContextRef]);
495 id tryUnwrapObjcObject(JSGlobalContextRef context, JSValueRef value)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebScriptWorld.h38 + (WebScriptWorld *)scriptWorldForGlobalContext:(JSGlobalContextRef)globalContext;
H A DWebFrame.h216 - (JSGlobalContextRef)globalContext;
H A DWebScriptWorld.mm105 + (WebScriptWorld *)scriptWorldForGlobalContext:(JSGlobalContextRef)context
113 return [self scriptWorldForGlobalContext:[context JSGlobalContextRef]];
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebScriptWorld.idl39 [local] HRESULT scriptWorldForGlobalContext([in] JSGlobalContextRef, [out, retval] IWebScriptWorld**);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitJavascriptResult.h47 WEBKIT_API JSGlobalContextRef
H A DWebKitJavascriptResult.cpp91 * Returns: the <function>JSGlobalContextRef</function> for the #WebKitJavascriptResult
93 JSGlobalContextRef webkit_javascript_result_get_global_context(WebKitJavascriptResult* javascriptResult)
102 * Get the value of @js_result. You should use the <function>JSGlobalContextRef</function>
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/qt/
H A DQtBuiltinBundlePage.h57 void registerNavigatorQtObject(JSGlobalContextRef);
H A DQtBuiltinBundlePage.cpp94 JSGlobalContextRef context = WKBundleFrameGetJavaScriptContext(frame);
127 JSGlobalContextRef context = WKBundleFrameGetJavaScriptContextForWorld(frame, world);
139 static JSObjectRef createWrappedMessage(JSGlobalContextRef context, WKStringRef data)
157 JSGlobalContextRef context = WKBundleFrameGetJavaScriptContext(frame);
179 void QtBuiltinBundlePage::registerNavigatorQtObject(JSGlobalContextRef context)
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebScriptWorld.h56 virtual HRESULT STDMETHODCALLTYPE scriptWorldForGlobalContext(JSGlobalContextRef, IWebScriptWorld**);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundleFrame.h51 WK_EXPORT JSGlobalContextRef WKBundleFrameGetJavaScriptContext(WKBundleFrameRef frame);
52 WK_EXPORT JSGlobalContextRef WKBundleFrameGetJavaScriptContextForWorld(WKBundleFrameRef frame, WKBundleScriptWorldRef world);

Completed in 410 milliseconds

123