Searched refs:WebScriptObject (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebScriptObject.cpp27 #include "WebScriptObject.h"
33 // WebScriptObject ------------------------------------------------------------
35 WebScriptObject::WebScriptObject() function in class:WebScriptObject
39 gClassNameCount.add("WebScriptObject");
42 WebScriptObject::~WebScriptObject()
45 gClassNameCount.remove("WebScriptObject");
50 HRESULT STDMETHODCALLTYPE WebScriptObject::QueryInterface(REFIID riid, void** ppvObject)
64 ULONG STDMETHODCALLTYPE WebScriptObject
[all...]
H A DWebScriptObject.h31 class WebScriptObject : public IWebScriptObject class in inherits:IWebScriptObject
34 WebScriptObject();
35 virtual ~WebScriptObject();
H A DDOMCoreClasses.h30 #include "WebScriptObject.h"
41 class DOMObject : public WebScriptObject, public IDOMObject {
45 virtual ULONG STDMETHODCALLTYPE AddRef(void) { return WebScriptObject::AddRef(); }
46 virtual ULONG STDMETHODCALLTYPE Release(void) { return WebScriptObject::Release(); }
51 /* [retval][out] */ BOOL* result) { return WebScriptObject::throwException(exceptionMessage, result); }
57 /* [retval][out] */ VARIANT* result) { return WebScriptObject::callWebScriptMethod(name, args, cArgs, result); }
61 /* [retval][out] */ VARIANT* result) { return WebScriptObject::evaluateWebScript(script, result); }
64 /* [in] */ BSTR name) { return WebScriptObject::removeWebScriptKey(name); }
67 /* [retval][out] */ BSTR* stringRepresentation) { return WebScriptObject::stringRepresentation(stringRepresentation); }
71 /* [retval][out] */ VARIANT* result) { return WebScriptObject
[all...]
H A DDOMCoreClasses.cpp79 return WebScriptObject::QueryInterface(riid, ppvObject);
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMObject.h28 #import <WebCore/WebScriptObject.h>
38 @interface DOMObject : WebScriptObject <NSCopying>
H A DWebScriptObjectPrivate.h29 #import "WebScriptObject.h"
48 @interface WebScriptObject (Private)
63 @interface WebScriptObject (StagedForPublic)
H A DWebScriptObject.h65 they can call [WebScriptObject throwException:]. Note that throwing an
87 then the underlying Objective-C object is returned. Otherwise, a new WebScriptObject
102 WebScriptObject => object
193 // WebScriptObject --------------------------------------------------
200 @class WebScriptObject
207 WebScriptObject:
223 @interface WebScriptObject : NSObject
237 @result The equivalent JSObjectRef for this WebScriptObject.
238 @discussion Use this method to bridge between the WebScriptObject and
308 @result The equivalent Objective-C JSValue for this WebScriptObject
[all...]
H A DWebScriptObject.mm123 return [[[WebScriptObject alloc] _initWithJSObject:object originRootObject:origin rootObject:root] autorelease];
140 @implementation WebScriptObject
210 // Associate the WebScriptObject with the JS wrapper for the ObjC DOM wrapper.
271 if (WebCoreObjCScheduleDeallocateOnMainThread([WebScriptObject class], self))
349 id resultObj = [WebScriptObject _convertValueToObjcValue:result originRootObject:[self _originRootObject] rootObject:[self _rootObject]];
366 id resultObj = [WebScriptObject _convertValueToObjcValue:returnValue originRootObject:[self _originRootObject] rootObject:[self _rootObject]];
413 resultObj = [WebScriptObject _convertValueToObjcValue:result originRootObject:[self _originRootObject] rootObject:[self _rootObject]];
492 id resultObj = [WebScriptObject _convertValueToObjcValue:result originRootObject:[self _originRootObject] rootObject:[self _rootObject]];
551 return [WebScriptObject scriptObjectForJSObject:toRef(object) originRootObject:originRootObject rootObject:rootObject];
589 @interface WebScriptObject (WebKitCocoaBinding
[all...]
H A DDOMInternal.mm81 @implementation WebScriptObject (WebScriptObjectInternal)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebFrameLoadDelegate.h35 @class WebScriptObject;
180 properties on the window object using the WebScriptObject and JavaScriptCore APIs.
182 @param windowObject The WebScriptObject representing the frame's JavaScript window object.
189 - (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
196 @param windowScriptObject The WebScriptObject for the window in the scripting environment.
200 - (void)webView:(WebView *)webView windowScriptObjectAvailable:(WebScriptObject *)windowScriptObject WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);
H A DWebFrame.h40 @class WebScriptObject;
207 @result The WebScriptObject representing the frame's JavaScript window object.
209 - (WebScriptObject *)windowObject;
H A DWebScriptDebugDelegate.mm51 // FIXME: these error strings should be public for future use by WebScriptObject and in WebScriptObject.h
64 WebScriptObject *globalObject; // the global object's proxy (not retained)
91 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debugger:(WebScriptDebugger *)debugger caller:(WebScriptCallFrame *)caller debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame
121 WebScriptObject *globalObject = _private->globalObject;
133 return [WebScriptObject _convertValueToObjcValue:value originRootObject:root1 rootObject:root2];
224 // Calling this method on the global frame is not quite the same as calling the WebScriptObject
H A DWebFramePrivate.h41 @class WebScriptObject;
H A DWebScriptDebugDelegate.h37 @class WebScriptObject;
H A DWebView.h44 @class WebScriptObject;
441 @discussion windowScriptObject return a WebScriptObject that represents the
445 - (WebScriptObject *)windowScriptObject;
H A DWebScriptDebugger.mm49 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debugger:(WebScriptDebugger *)debugger caller:(WebScriptCallFrame *)caller debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame;
H A DWebViewPrivate.h764 - (void)webView:(WebView *)webView didClearInspectorWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
/macosx-10.9.5/WebCore-7537.78.1/bridge/objc/
H A DWebScriptObject.h31 @protocol WebScriptObject
H A Dobjc_runtime.mm31 #include "WebScriptObject.h"
47 static ClassStructPtr<WebScriptObject> webScriptObjectClass = NSClassFromString(@"WebScriptObject");
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webscriptobject.py27 self.failUnlessResultIsBOOL(WebScriptObject.throwException_)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webscriptobject.py27 self.assertResultIsBOOL(WebScriptObject.throwException_)
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DScriptController.h36 OBJC_CLASS WebScriptObject; variable
149 WebScriptObject* windowScriptObject();
185 RetainPtr<WebScriptObject> m_windowScriptObject;
H A DScriptControllerMac.mm98 WebScriptObject* ScriptController::windowScriptObject()
106 m_windowScriptObject = [WebScriptObject scriptObjectForJSObject:toRef(windowShell(pluginWorld())) originRootObject:root rootObject:root];
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebKit.h50 #import <WebKit/WebScriptObject.h>
/macosx-10.9.5/WebCore-7537.78.1/bridge/
H A Dtestbindings.mm32 #import <WebKit/WebScriptObject.h>

Completed in 111 milliseconds

12