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

  /external/webkit/Source/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/Source/WebKit/win/
WebSerializedJSValue.h 32 typedef const struct OpaqueJSValue* JSValueRef;
46 virtual HRESULT STDMETHODCALLTYPE serialize(JSContextRef, JSValueRef value, JSValueRef* exception);
47 virtual HRESULT STDMETHODCALLTYPE deserialize(JSContextRef, JSValueRef* result);
  /external/webkit/Source/JavaScriptCore/API/
APICast.h 46 typedef const struct OpaqueJSValue* JSValueRef;
63 inline JSC::JSValue toJS(JSC::ExecState* exec, JSValueRef v)
79 inline JSC::JSValue toJSForGC(JSC::ExecState* exec, JSValueRef v)
108 inline JSValueRef toRef(JSC::ExecState* exec, JSC::JSValue v)
114 return reinterpret_cast<JSValueRef>(JSC::jsAPIValueWrapper(exec, v).asCell());
115 return reinterpret_cast<JSValueRef>(v.asCell());
118 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;
102 @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.
105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
114 @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.
117 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
  /external/webkit/Source/WebCore/bindings/js/
SerializedScriptValue.h 37 typedef const struct OpaqueJSValue* JSValueRef;
58 static PassRefPtr<SerializedScriptValue> create(JSContextRef, JSValueRef value, JSValueRef* exception);
71 JSValueRef deserialize(JSContextRef, JSValueRef* exception);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue_p.h 66 the JSValueRef and the JSObjectRef, and it could be automatically casted to these types by cast
93 inline QScriptValuePrivate(const QScriptEnginePrivate* engine, JSValueRef value);
130 inline JSValueRef property(quint32 property, JSValueRef* exception);
131 inline JSValueRef property(JSStringRef property, JSValueRef* exception);
140 inline void setProperty(quint32 property, JSValueRef value, JSPropertyAttributes flags, JSValueRef* exception);
141 inline void setProperty(JSStringRef property, JSValueRef value, JSPropertyAttributes flags, JSValueRef* exception)
    [all...]

Completed in 100 milliseconds