Searched refs:wrapper (Results 26 - 50 of 351) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Shared/Cocoa/
H A DWKNSError.h35 inline NSError *wrapper(API::Error& error) function in namespace:WebKit
37 ASSERT([error.wrapper() isKindOfClass:[NSError self]]);
38 return (NSError *)error.wrapper();
H A DWKNSString.h34 inline NSString *wrapper(API::String& string) { ASSERT([string.wrapper() isKindOfClass:[NSString class]]); return (NSString *)string.wrapper(); } function in namespace:WebKit
H A DWKNSURL.h35 inline NSURL *wrapper(API::URL& url) function in namespace:WebKit
37 ASSERT([url.wrapper() isKindOfClass:[NSURL class]]);
38 return (NSURL *)url.wrapper();
H A DWKNSURLProtectionSpace.h35 inline NSURLProtectionSpace *wrapper(WebProtectionSpace& protectionSpace) function in namespace:WebKit
37 ASSERT([protectionSpace.wrapper() isKindOfClass:[NSURLProtectionSpace self]]);
38 return (NSURLProtectionSpace *)protectionSpace.wrapper();
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBackForwardListInternal.h34 inline WKBackForwardList *wrapper(WebBackForwardList& list) { ASSERT([list.wrapper() isKindOfClass:[WKBackForwardList class]]); return (WKBackForwardList *)list.wrapper(); } function in namespace:WebKit
H A DWKBackForwardListItemInternal.h34 inline WKBackForwardListItem *wrapper(WebBackForwardListItem& item) { ASSERT([item.wrapper() isKindOfClass:[WKBackForwardListItem class]]); return (WKBackForwardListItem *)item.wrapper(); } function in namespace:WebKit
H A DWKBrowsingContextGroupInternal.h35 inline WKBrowsingContextGroup *wrapper(WebPageGroup& pageGroup) function in namespace:WebKit
37 ASSERT([pageGroup.wrapper() isKindOfClass:[WKBrowsingContextGroup class]]);
38 return (WKBrowsingContextGroup *)pageGroup.wrapper();
H A DWKConnectionInternal.h35 inline WKConnection *wrapper(WebConnection& connection) function in namespace:WebKit
37 ASSERT([connection.wrapper() isKindOfClass:[WKConnection class]]);
38 return (WKConnection *)connection.wrapper();
H A DWKNSURLAuthenticationChallenge.h35 inline NSURLAuthenticationChallenge *wrapper(AuthenticationChallengeProxy& challenge) function in namespace:WebKit
37 ASSERT([challenge.wrapper() isKindOfClass:[NSURLAuthenticationChallenge self]]);
38 return (NSURLAuthenticationChallenge *)challenge.wrapper();
H A DWKNavigationDataInternal.h35 inline WKNavigationData *wrapper(API::NavigationData& data) function in namespace:WebKit
37 ASSERT([data.wrapper() isKindOfClass:[WKNavigationData class]]);
39 return (WKNavigationData *)data.wrapper();
H A D_WKWebsiteDataStoreInternal.h35 inline _WKWebsiteDataStore *wrapper(API::Session& session) function in namespace:WebKit
37 ASSERT([session.wrapper() isKindOfClass:[_WKWebsiteDataStore class]]);
38 return (_WKWebsiteDataStore *)session.wrapper();
H A DWKProcessPoolInternal.h39 inline WKProcessPool *wrapper(WebContext& context) function in namespace:WebKit
41 ASSERT([context.wrapper() isKindOfClass:[WKProcessPool class]]);
42 return (WKProcessPool *)context.wrapper();
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/Cocoa/
H A DWKWebProcessPlugInFrameInternal.h36 inline WKWebProcessPlugInFrame *wrapper(WebFrame& frame) function in namespace:WebKit
38 ASSERT([frame.wrapper() isKindOfClass:[WKWebProcessPlugInFrame class]]);
39 return (WKWebProcessPlugInFrame *)frame.wrapper(); }
H A DWKWebProcessPlugInHitTestResultInternal.h35 inline WKWebProcessPlugInHitTestResult *wrapper(InjectedBundleHitTestResult& hitTestResult) function in namespace:WebKit
37 ASSERT([hitTestResult.wrapper() isKindOfClass:[WKWebProcessPlugInHitTestResult class]]);
38 return (WKWebProcessPlugInHitTestResult *)hitTestResult.wrapper();
H A DWKWebProcessPlugInNodeHandleInternal.h35 inline WKWebProcessPlugInNodeHandle *wrapper(InjectedBundleNodeHandle& nodeHandle) function in namespace:WebKit
37 ASSERT([nodeHandle.wrapper() isKindOfClass:[WKWebProcessPlugInNodeHandle class]]);
38 return (WKWebProcessPlugInNodeHandle *)nodeHandle.wrapper();
H A DWKWebProcessPlugInPageGroupInternal.h35 inline WKWebProcessPlugInPageGroup *wrapper(WebPageGroupProxy& pageGroup) function in namespace:WebKit
37 ASSERT([pageGroup.wrapper() isKindOfClass:[WKWebProcessPlugInPageGroup class]]);
38 return (WKWebProcessPlugInPageGroup *)pageGroup.wrapper();
H A DWKWebProcessPlugInScriptWorldInternal.h35 inline WKWebProcessPlugInScriptWorld *wrapper(InjectedBundleScriptWorld& world) function in namespace:WebKit
37 ASSERT([world.wrapper() isKindOfClass:[WKWebProcessPlugInScriptWorld class]]);
38 return (WKWebProcessPlugInScriptWorld *)world.wrapper();
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugInBrowserContextControllerInternal.h35 inline WKWebProcessPlugInBrowserContextController *wrapper(WebPage& page) function in namespace:WebKit
37 ASSERT([page.wrapper() isKindOfClass:[WKWebProcessPlugInBrowserContextController class]]);
38 return (WKWebProcessPlugInBrowserContextController *)page.wrapper();
H A DWKWebProcessPlugInInternal.h35 inline WKWebProcessPlugInController *wrapper(InjectedBundle& bundle) function in namespace:WebKit
37 ASSERT([bundle.wrapper() isKindOfClass:[WKWebProcessPlugInController class]]);
38 return (WKWebProcessPlugInController *)bundle.wrapper();
/macosx-10.10/WebCore-7600.1.25/accessibility/win/
H A DAccessibilityObjectWrapperWin.cpp52 AccessibilityObjectWrapper* wrapper = obj->wrapper(); local
53 V_UNKNOWN(result) = wrapper;
54 if (wrapper)
55 wrapper->AddRef();
/macosx-10.10/WebCore-7600.1.25/accessibility/ios/
H A DAXObjectCacheIOS.mm42 [obj->wrapper() detach];
48 RetainPtr<AccessibilityObjectWrapper> wrapper = adoptNS([[WebAccessibilityObjectWrapper alloc] initWithAccessibilityObject:obj]);
49 obj->setWrapper(wrapper.get());
61 [obj->wrapper() postFocusChangeNotification];
65 [obj->wrapper() postSelectedTextChangeNotification];
68 [obj->wrapper() postLayoutChangeNotification];
71 [obj->wrapper() postLiveRegionChangeNotification];
74 [obj->wrapper() postLiveRegionCreatedNotification];
77 [obj->wrapper() postChildrenChangedNotification];
80 [obj->wrapper() postLoadCompleteNotificatio
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/scripts/test/ObjC/
H A DDOMTestActiveDOMObject.mm85 WebCore::TestActiveDOMObject* core(DOMTestActiveDOMObject *wrapper)
87 return wrapper ? reinterpret_cast<WebCore::TestActiveDOMObject*>(wrapper->_internal) : 0;
95 if (DOMTestActiveDOMObject *wrapper = getDOMWrapper(value))
96 return [[wrapper retain] autorelease];
97 DOMTestActiveDOMObject *wrapper = [[DOMTestActiveDOMObject alloc] _init];
98 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(value);
100 addDOMWrapper(wrapper, value);
101 return [wrapper autorelease];
H A DDOMTestNode.mm47 WebCore::TestNode* core(DOMTestNode *wrapper)
49 return wrapper ? reinterpret_cast<WebCore::TestNode*>(wrapper->_internal) : 0;
/macosx-10.10/WebCore-7600.1.25/platform/ios/wak/
H A DWAKViewPrivate.h47 WAKView *wrapper = (WAKView *)view->wrapper;
48 if (wrapper)
49 return wrapper;
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCSSValueCustom.cpp83 JSObject* wrapper = getCachedWrapper(globalObject->world(), value);
85 if (wrapper)
86 return wrapper;
89 wrapper = CREATE_DOM_WRAPPER(globalObject, WebKitCSSTransformValue, value);
92 wrapper = CREATE_DOM_WRAPPER(globalObject, WebKitCSSFilterValue, value);
95 wrapper = CREATE_DOM_WRAPPER(globalObject, CSSValueList, value);
97 wrapper = CREATE_DOM_WRAPPER(globalObject, SVGPaint, value);
99 wrapper = CREATE_DOM_WRAPPER(globalObject, SVGColor, value);
101 wrapper = CREATE_DOM_WRAPPER(globalObject, CSSPrimitiveValue, value);
103 wrapper
[all...]

Completed in 387 milliseconds

1234567891011>>