HomeSort by relevance Sort by last modified time
    Searched refs:RetainPtr (Results 26 - 50 of 363) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/API/mac/
FindIndicatorWindow.h 32 #import <wtf/RetainPtr.h>
66 RetainPtr<NSWindow> m_findIndicatorWindow;
69 RetainPtr<WebFindIndicatorWindowAnimation> m_bounceAnimation;
72 RetainPtr<WebFindIndicatorWindowAnimation> m_fadeOutAnimation;
PDFViewController.h 33 #include <wtf/RetainPtr.h>
83 RetainPtr<WKPDFView> m_wkPDFView;
86 RetainPtr<NSString> m_suggestedFilename;
87 RetainPtr<CFDataRef> m_pdfData;
89 RetainPtr<NSString> m_pathToPDFOnDisk;
  /external/webkit/Source/WebKit2/UIProcess/mac/
CorrectionPanel.h 32 #import <wtf/RetainPtr.h>
54 RetainPtr<WKView> m_view;
55 RetainPtr<NSString> m_resultForSynchronousDismissal;
56 RetainPtr<NSCondition> m_resultCondition;
WKFullScreenWindowController.h 29 #import <wtf/RetainPtr.h>
44 RetainPtr<NSView> _webViewPlaceholder;
45 RetainPtr<NSView> _layerViewPlaceholder;
46 RetainPtr<NSView> _layerHostingView;
  /external/webkit/Source/WebCore/bindings/objc/
ObjCNodeFilterCondition.h 33 #include <wtf/RetainPtr.h>
55 RetainPtr<id <DOMNodeFilter> > m_filter;
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.h 52 RetainPtr<CFMutableDictionaryRef> _methods;
53 RetainPtr<CFMutableDictionaryRef> _fields;
  /external/webkit/Source/WebCore/platform/cf/win/
CertificateCFWin.cpp 45 RetainPtr<CFDataRef> copyCertificateToData(PCCERT_CONTEXT certificate)
49 return RetainPtr<CFDataRef>(AdoptCF, CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(certificateCopy), sizeof(*certificateCopy), certDealloc));
  /external/webkit/Source/WebCore/platform/mac/
PopupMenuMac.h 27 #include <wtf/RetainPtr.h>
57 RetainPtr<NSPopUpButtonCell> m_popup;
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandle.h 37 #include <wtf/RetainPtr.h>
68 RetainPtr<CFRunLoopSourceRef> m_pacRunLoopSource;
106 RetainPtr<CFStringRef> m_proxyHost;
107 RetainPtr<CFNumberRef> m_proxyPort;
109 RetainPtr<CFHTTPMessageRef> m_proxyResponseMessage;
111 RetainPtr<CFReadStreamRef> m_readStream;
112 RetainPtr<CFWriteStreamRef> m_writeStream;
114 RetainPtr<CFURLRef> m_httpsURL; // ws(s): replaced with https:
CookieJarCFNet.cpp 60 static inline RetainPtr<CFStringRef> cookieDomain(CFHTTPCookieRef cookie)
63 return RetainPtr<CFStringRef>(AdoptCF, CFHTTPCookieCopyDomainPtr()(cookie));
74 static inline RetainPtr<CFStringRef> cookieName(CFHTTPCookieRef cookie)
77 return RetainPtr<CFStringRef>(AdoptCF, CFHTTPCookieCopyNamePtr()(cookie));
81 static inline RetainPtr<CFStringRef> cookiePath(CFHTTPCookieRef cookie)
84 return RetainPtr<CFStringRef>(AdoptCF, CFHTTPCookieCopyPathPtr()(cookie));
88 static inline RetainPtr<CFStringRef> cookieValue(CFHTTPCookieRef cookie)
91 return RetainPtr<CFStringRef>(AdoptCF, CFHTTPCookieCopyValuePtr()(cookie));
95 static RetainPtr<CFArrayRef> filterCookies(CFArrayRef unfilteredCookies)
98 RetainPtr<CFMutableArrayRef> filteredCookies(AdoptCF, CFArrayCreateMutable(0, count, &kCFTypeArrayCallBacks) (…)
    [all...]
AuthenticationChallenge.h 73 RetainPtr<CFURLAuthChallengeRef> m_cfChallenge;
75 RetainPtr<id> m_sender; // Always the same as [m_macChallenge.get() sender], cached here for performance.
76 RetainPtr<NSURLAuthenticationChallenge *> m_nsChallenge;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebCachedFramePlatformData.h 31 #import <wtf/RetainPtr.h>
41 RetainPtr<id> m_webDocumentView;
  /external/webkit/Source/WebKit2/Platform/mac/
ModuleMac.mm 33 RetainPtr<CFStringRef> bundlePath(AdoptCF, m_path.createCFString());
34 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(kCFAllocatorDefault, bundlePath.get(), kCFURLPOSIXPathStyle, FALSE));
38 RetainPtr<CFBundleRef> bundle(AdoptCF, CFBundleCreate(kCFAllocatorDefault, bundleURL.get()));
66 RetainPtr<CFStringRef> functionNameString(AdoptCF, CFStringCreateWithCStringNoCopy(kCFAllocatorDefault, functionName, kCFStringEncodingASCII, kCFAllocatorNull));
  /external/webkit/Source/WebKit2/Shared/
DictionaryPopupInfo.h 33 #include <wtf/RetainPtr.h>
56 RetainPtr<CFDictionaryRef> options;
  /external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.h 30 #include <wtf/RetainPtr.h>
55 RetainPtr<CFArrayRef> m_certificateChain;
UpdateChunk.cpp 35 #include <wtf/RetainPtr.h>
60 RetainPtr<CGImageRef> UpdateChunk::createImage()
62 RetainPtr<CGDataProviderRef> provider(AdoptCF, CGDataProviderCreateWithData(0, m_data, size(), 0));
63 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
64 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_rect.width(), m_rect.height(), 8, 32, m_rect.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host, provider.get(), 0, false, kCGRenderingIntentDefault));
  /external/webkit/Source/WebKit2/WebProcess/ResourceCache/cf/
WebResourceCacheManagerCFNet.cpp 46 RetainPtr<CFArrayRef> WebResourceCacheManager::cfURLCacheHostNames()
48 return RetainPtr<CFArrayRef>(AdoptCF, WKCFURLCacheCopyAllHostNamesInPersistentStore());
  /external/webkit/Source/WebCore/platform/text/mac/
LocalizedNumberMac.mm 36 #include <wtf/RetainPtr.h>
43 static RetainPtr<NSNumberFormatter> createFormatterForCurrentLocale()
45 RetainPtr<NSNumberFormatter> formatter(AdoptNS, [[NSNumberFormatter alloc] init]);
70 RetainPtr<NSNumber> number(AdoptNS, [[NSNumber alloc] initWithDouble:inputNumber]);
71 RetainPtr<NSNumberFormatter> formatter = numberFormatter();
TextBreakIteratorInternalICUMac.mm 24 #include <wtf/RetainPtr.h>
30 static inline RetainPtr<CFStringRef> textBreakLocalePreference()
32 RetainPtr<CFPropertyListRef> locale(AdoptCF, CFPreferencesCopyValue(CFSTR("AppleTextBreakLocale"),
39 static RetainPtr<CFStringRef> topLanguagePreference()
52 static RetainPtr<CFStringRef> canonicalLanguageIdentifier(CFStringRef locale)
56 RetainPtr<CFStringRef> canonicalLocale(AdoptCF,
91 RetainPtr<CFStringRef> locale = textBreakLocalePreference();
  /external/webkit/Source/WebCore/platform/win/
LocalizedStringsWin.cpp 37 #include <wtf/RetainPtr.h>
56 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
57 RetainPtr<CFURLRef> dllURL(AdoptCF, CFURLCreateWithFileSystemPath(0, dllPath.get(), kCFURLWindowsPathStyle, false));
58 RetainPtr<CFURLRef> dllDirectoryURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, dllURL.get()));
59 RetainPtr<CFURLRef> resourcesDirectoryURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, dllDirectoryURL.get(), CFSTR("WebKit.resources"), true));
80 RetainPtr<CFStringRef> keyString(AdoptCF, CFStringCreateWithCStringNoCopy(NULL, key, kCFStringEncodingUTF8, kCFAllocatorNull));
81 RetainPtr<CFStringRef> result(AdoptCF, CFCopyLocalizedStringWithDefaultValue(keyString.get(), 0, webKitBundle(), notFound, 0));
  /external/webkit/Source/WebCore/platform/network/mac/
NetworkStateNotifierMac.cpp 45 RetainPtr<CFStringRef> str(AdoptCF, SCDynamicStoreKeyCreateNetworkInterface(0, kSCDynamicStoreDomainState));
47 RetainPtr<CFPropertyListRef> propertyList(AdoptCF, SCDynamicStoreCopyValue(m_store.get(), str.get()));
68 RetainPtr<CFStringRef> key(AdoptCF, SCDynamicStoreKeyCreateNetworkInterfaceEntity(0, kSCDynamicStoreDomainState, interface, kSCEntNetIPv4));
70 RetainPtr<CFArrayRef> keyList(AdoptCF, SCDynamicStoreCopyKeyList(m_store.get(), key.get()));
112 RetainPtr<CFRunLoopSourceRef> configSource = SCDynamicStoreCreateRunLoopSource(0, m_store.get(), 0);
118 RetainPtr<CFMutableArrayRef> keys(AdoptCF, CFArrayCreateMutable(0, 0, &kCFTypeArrayCallBacks));
119 RetainPtr<CFMutableArrayRef> patterns(AdoptCF, CFArrayCreateMutable(0, 0, &kCFTypeArrayCallBacks));
121 RetainPtr<CFStringRef> key;
122 RetainPtr<CFStringRef> pattern;
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginHostProxy.h 33 #include <wtf/RetainPtr.h>
87 RetainPtr<CFRunLoopSourceRef> m_clientPortSource;
89 RetainPtr<CFMachPortRef> m_deadNameNotificationPort;
91 RetainPtr<id> m_activationObserver;
92 RetainPtr<WebPlaceholderModalWindow *> m_placeholderWindow;
WebHostedNetscapePluginView.h 40 RetainPtr<NSArray> _attributeKeys;
41 RetainPtr<NSArray> _attributeValues;
43 RetainPtr<CALayer> _pluginLayer;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferDataCG.h 30 #include <wtf/RetainPtr.h>
51 RetainPtr<CGDataProviderRef> m_dataProvider;
55 RetainPtr<IOSurfaceRef> m_surface;
  /external/webkit/Source/WebCore/platform/graphics/mac/
ColorMac.mm 29 #import <wtf/RetainPtr.h>
75 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
79 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1]));
83 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1]));
89 static RetainPtr<NSColor>* cachedColors = new RetainPtr<NSColor>[cacheSize];

Completed in 2587 milliseconds

12 3 4 5 6 7 8 91011>>