HomeSort by relevance Sort by last modified time
    Searched defs:JSValueRef (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebKit/mac/WebView/
WebSerializedJSValue.h 28 typedef const struct OpaqueJSValue* JSValueRef;
35 - (id)initWithValue:(JSValueRef)object context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
36 - (JSValueRef)deserialize:(JSContextRef)destinationContext;
  /external/webkit/WebKit/win/
WebSerializedJSValue.h 31 typedef const struct OpaqueJSValue* JSValueRef;
44 virtual HRESULT STDMETHODCALLTYPE serialize(JSContextRef, JSValueRef value, JSValueRef* exception);
45 virtual HRESULT STDMETHODCALLTYPE deserialize(JSContextRef, JSValueRef* result);
  /external/webkit/JavaScriptCore/API/
APICast.h 47 typedef const struct OpaqueJSValue* JSValueRef;
64 inline JSC::JSValue toJS(JSC::ExecState* exec, JSValueRef v)
80 inline JSC::JSValue toJSForGC(JSC::ExecState* exec, JSValueRef v)
109 inline JSValueRef toRef(JSC::ExecState* exec, JSC::JSValue v)
115 return reinterpret_cast<JSValueRef>(asCell(JSC::jsAPIValueWrapper(exec, v)));
116 return reinterpret_cast<JSValueRef>(asCell(v));
119 return reinterpret_cast<JSValueRef>(JSC::JSValue::encode(v));
JSBase.h 59 /*! @typedef JSValueRef A JavaScript value. The base type for all JavaScript values, and polymorphic functions on them. */
60 typedef const struct OpaqueJSValue* JSValueRef;
96 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
99 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
108 @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error exception.
111 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.h 33 typedef const struct OpaqueJSValue* JSValueRef;
184 static PassRefPtr<SerializedScriptValue> create(JSContextRef, JSValueRef value, JSValueRef* exception);
218 JSValueRef deserialize(JSContextRef, JSValueRef* exception);

Completed in 51 milliseconds