Searched defs:JSObjectRef (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Tools/DumpRenderTree/gtk/
H A DEventSender.h34 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
36 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
H A DPlainTextController.h33 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
35 JSObjectRef makePlainTextController(JSContextRef);
H A DTextInputController.h33 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
35 JSObjectRef makeTextInputController(JSContextRef);
/external/webkit/Tools/DumpRenderTree/win/
H A DEventSender.h36 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
38 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.h62 /*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */
63 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
H A DAPICast.h47 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
93 inline JSC::JSObject* toJS(JSObjectRef o)
122 inline JSObjectRef toRef(JSC::JSObject* o)
124 return reinterpret_cast<JSObjectRef>(o);
127 inline JSObjectRef toRef(const JSC::JSObject* o)
129 return reinterpret_cast<JSObjectRef>(const_cast<JSC::JSObject*>(o));
/external/webkit/Source/WebKit/win/
H A DWebFrame.h60 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
270 virtual HRESULT STDMETHODCALLTYPE stringByEvaluatingJavaScriptInScriptWorld(IWebScriptWorld*, JSObjectRef globalObjectRef, BSTR script, BSTR* evaluationResult);
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h66 the JSValueRef and the JSObjectRef, and it could be automatically casted to these types by cast
94 inline QScriptValuePrivate(const QScriptEnginePrivate* engine, JSObjectRef object);
154 inline operator JSObjectRef() const;
177 JSObjectRef m_object;
186 Value(JSObjectRef object) : m_object(object) {}
321 QScriptValuePrivate::QScriptValuePrivate(const QScriptEnginePrivate* engine, JSObjectRef object)
624 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(*u.m_string), /* exception */ 0);
631 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(u.m_number), /* exception */ 0);
638 JSObjectRef object = JSValueToObject(*engine, engine->makeJSValue(u.m_bool), /* exception */ 0);
651 JSObjectRef objec
[all...]
/external/webkit/Source/WebKit/wx/
H A DWebView.h46 typedef struct OpaqueJSValue* JSObjectRef; typedef in typeref:struct:OpaqueJSValue
516 JSObjectRef GetWindowObject() const { return m_windowObject; }
517 void SetWindowObject(JSObjectRef object) { m_windowObject = object; }
524 JSObjectRef m_windowObject;

Completed in 3210 milliseconds