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

  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.h 34 typedef struct OpaqueJSValue* JSObjectRef;
36 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
PlainTextController.h 33 typedef struct OpaqueJSValue* JSObjectRef;
35 JSObjectRef makePlainTextController(JSContextRef);
TextInputController.h 33 typedef struct OpaqueJSValue* JSObjectRef;
35 JSObjectRef makeTextInputController(JSContextRef);
  /external/webkit/Tools/DumpRenderTree/win/
EventSender.h 36 typedef struct OpaqueJSValue* JSObjectRef;
38 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
  /external/webkit/Source/JavaScriptCore/API/
APICast.h 47 typedef struct OpaqueJSValue* JSObjectRef;
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));
JSBase.h 62 /*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */
63 typedef struct OpaqueJSValue* JSObjectRef;
105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
  /external/webkit/Source/WebKit/win/
WebFrame.h 60 typedef struct OpaqueJSValue* JSObjectRef;
270 virtual HRESULT STDMETHODCALLTYPE stringByEvaluatingJavaScriptInScriptWorld(IWebScriptWorld*, JSObjectRef globalObjectRef, BSTR script, BSTR* evaluationResult);
  /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
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 object = JSValueToObject(*m_engine, *this, &exception)
    [all...]
  /external/webkit/Source/WebKit/wx/
WebView.h 46 typedef struct OpaqueJSValue* JSObjectRef;
516 JSObjectRef GetWindowObject() const { return m_windowObject; }
517 void SetWindowObject(JSObjectRef object) { m_windowObject = object; }
524 JSObjectRef m_windowObject;

Completed in 447 milliseconds