Searched refs:RetainPtr (Results 151 - 175 of 447) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DContextMenu.h38 #include <wtf/RetainPtr.h>
92 RetainPtr<NSMutableArray> m_platformDescription;
H A DDragImage.h36 #include <wtf/RetainPtr.h>
58 typedef RetainPtr<NSImage> DragImageRef;
H A DPlatformSpeechSynthesizer.h36 #include <wtf/RetainPtr.h>
90 RetainPtr<WebSpeechSynthesisWrapper> m_platformSpeechWrapper;
/macosx-10.9.5/WebCore-7537.78.1/platform/cf/
H A DCFURLExtras.cpp33 RetainPtr<CFURLRef> createCFURLFromBuffer(const char* data, size_t size, CFURLRef baseURL)
39 RetainPtr<CFURLRef> result = adoptCF(CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(data), size, kCFStringEncodingUTF8, baseURL, true));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIcon.h30 #include <wtf/RetainPtr.h>
60 RetainPtr<NSImage> m_nsImage;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DInbandTextTrackPrivateAVCF.h33 #include <wtf/RetainPtr.h>
65 RetainPtr<AVCFMediaSelectionOptionRef> m_mediaSelectionOption;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.h32 #include <wtf/RetainPtr.h>
82 RetainPtr<CACFLayerRef> m_tileParent;
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreFullScreenWarningView.mm69 RetainPtr<NSDictionary> attributes = adoptNS([[NSDictionary alloc] initWithObjectsAndKeys:
73 RetainPtr<NSAttributedString> text = adoptNS([[NSAttributedString alloc] initWithString:title attributes:attributes.get()]);
99 RetainPtr<NSShadow> shadow = adoptNS([[NSShadow alloc] init]);
100 RetainPtr<NSColor> shadowColor = [NSColor colorWithCalibratedWhite:WarningViewShadowWhite alpha:WarningViewShadowAlpha];
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DNetworkingContext.h25 #include <wtf/RetainPtr.h>
68 virtual RetainPtr<CFDataRef> sourceApplicationAuditData() const = 0;
H A DProtectionSpace.cpp31 #include <wtf/RetainPtr.h>
96 RetainPtr<CFURLProtectionSpaceRef> cfSpace = adoptCF(createCF(*this));
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DCookieStorageCFNet.cpp78 RetainPtr<CFHTTPCookieStorageRef> cookieStorage = NetworkStorageSession::defaultStorageSession().cookieStorage();
94 RetainPtr<CFHTTPCookieStorageRef> cookieStorage = NetworkStorageSession::defaultStorageSession().cookieStorage();
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DResourceErrorMac.mm40 static RetainPtr<NSError> createNSErrorFromResourceErrorBase(const ResourceErrorBase& resourceError)
42 RetainPtr<NSMutableDictionary> userInfo = adoptNS([[NSMutableDictionary alloc] init]);
48 RetainPtr<NSURL> cocoaURL = adoptNS([[NSURL alloc] initWithString:resourceError.failingURL()]);
79 RetainPtr<CFDictionaryRef> userInfo = adoptCF(CFErrorCopyUserInfo(error));
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebBasePluginPackage.h30 #import <wtf/RetainPtr.h>
63 RetainPtr<CFBundleRef> cfBundle;
H A DWebNetscapePluginEventHandlerCarbon.h34 #import <wtf/RetainPtr.h>
76 RetainPtr<CFRunLoopTimerRef> m_nullEventTimer;
/macosx-10.9.5/WebKit2-7537.78.2/Platform/
H A DModule.h33 #include <wtf/RetainPtr.h>
76 RetainPtr<CFBundleRef> m_bundle;
/macosx-10.9.5/WebKit2-7537.78.2/Platform/cg/
H A DCGUtilities.cpp29 #include <wtf/RetainPtr.h>
53 RetainPtr<CGImageRef> image = adoptCF(CGBitmapContextCreateImage(bitmapContext));
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DNativeWebKeyboardEvent.h34 #include <wtf/RetainPtr.h>
78 RetainPtr<NSEvent> m_nativeEvent;
H A DNativeWebMouseEvent.h32 #include <wtf/RetainPtr.h>
73 RetainPtr<NSEvent> m_nativeEvent;
H A DNativeWebWheelEvent.h32 #include <wtf/RetainPtr.h>
71 RetainPtr<NSEvent> m_nativeEvent;
H A DWebArchiveResource.cpp34 #include <wtf/RetainPtr.h>
72 RetainPtr<CFDataRef> cfData = adoptCF(m_archiveResource->data()->createCFData());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/cf/
H A DWebBackForwardListCF.cpp30 #include <wtf/RetainPtr.h>
77 RetainPtr<CFMutableArrayRef> entries = adoptCF(CFArrayCreateMutable(0, m_entries.size(), &kCFTypeArrayCallBacks));
100 RetainPtr<CFStringRef> url = m_entries[i]->url().createCFString();
101 RetainPtr<CFStringRef> title = m_entries[i]->title().createCFString();
102 RetainPtr<CFStringRef> originalURL = m_entries[i]->originalURL().createCFString();
106 RetainPtr<CFDataRef> entryData = adoptCF(CFDataCreate(kCFAllocatorDefault, m_entries[i]->backForwardData().data(), m_entries[i]->backForwardData().size()));
111 RetainPtr<CFDictionaryRef> entryDictionary = adoptCF(CFDictionaryCreate(0, keys, values, 4, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
132 RetainPtr<CFNumberRef> currentIndexNumber = adoptCF(CFNumberCreate(0, kCFNumberCFIndexType, &currentIndex));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugIn.mm40 #import <wtf/RetainPtr.h>
42 typedef HashMap<WKBundlePageRef, RetainPtr<WKWebProcessPlugInBrowserContextController *>> BundlePageWrapperCache;
45 RetainPtr<id <WKWebProcessPlugIn> > _principalClassInstance;
48 RetainPtr<WKConnection *> _connectionWrapper;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DPageBanner.h35 #include <wtf/RetainPtr.h>
94 RetainPtr<CALayer> m_layer;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DGlyphPageTreeNodeMac.cpp90 RetainPtr<CFStringRef> string = adoptCF(CFStringCreateWithCharactersNoCopy(kCFAllocatorDefault, buffer, bufferLength, kCFAllocatorNull));
91 RetainPtr<CFAttributedStringRef> attributedString = adoptCF(CFAttributedStringCreate(kCFAllocatorDefault, string.get(), fontData->getCFStringAttributes(0, fontData->hasVerticalGlyphs() ? Vertical : Horizontal)));
92 RetainPtr<CTLineRef> line = adoptCF(CTLineCreateWithAttributedString(attributedString.get()));
107 RetainPtr<CGFontRef> cgFont = adoptCF(CTFontCopyGraphicsFont(fontData->platformData().ctFont(), 0));
117 RetainPtr<CGFontRef> runCGFont = adoptCF(CTFontCopyGraphicsFont(runFont, 0));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DTiledCoreAnimationDrawingArea.h39 #include <wtf/RetainPtr.h>
123 RetainPtr<CALayer> m_rootLayer;
124 RetainPtr<CALayer> m_pendingRootCompositingLayer;
126 RetainPtr<CALayer> m_debugInfoLayer;
130 mutable HashMap<const WebCore::GraphicsLayer*, RetainPtr<CALayer>> m_pageOverlayPlatformLayers;

Completed in 116 milliseconds

1234567891011>>