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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
RetainPtr.h 1 #import <JavaScriptCore/RetainPtr.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
RetainPtr.h 1 #include <JavaScriptCore/RetainPtr.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
RetainPtr.h 3 #include <JavaScriptCore/RetainPtr.h>
  /external/webkit/Source/WebCore/platform/cf/win/
CertificateCFWin.h 30 #include <wtf/RetainPtr.h>
34 RetainPtr<CFDataRef> copyCertificateToData(PCCERT_CONTEXT);
  /external/webkit/Source/WebKit2/Shared/mac/
ArgumentCodersMac.h 29 #include <wtf/RetainPtr.h>
38 bool decode(ArgumentDecoder*, RetainPtr<NSAttributedString>&);
42 bool decode(ArgumentDecoder*, RetainPtr<NSColor>&);
46 bool decode(ArgumentDecoder*, RetainPtr<NSDictionary>&);
50 bool decode(ArgumentDecoder*, RetainPtr<NSFont>&);
54 bool decode(ArgumentDecoder*, RetainPtr<NSNumber>&);
58 bool decode(ArgumentDecoder*, RetainPtr<NSString>&);
AttributedString.h 29 #include <wtf/RetainPtr.h>
44 RetainPtr<NSAttributedString> string;
  /external/webkit/Source/JavaScriptCore/wtf/
RetainPtr.h 39 // Unlike most most of our smart pointers, RetainPtr can take either the pointer type or the pointed-to type,
40 // so both RetainPtr<NSDictionary> and RetainPtr<CFDictionaryRef> will work.
55 template<typename T> class RetainPtr {
60 RetainPtr() : m_ptr(0) {}
61 RetainPtr(PtrType ptr) : m_ptr(ptr) { if (ptr) CFRetain(ptr); }
63 RetainPtr(AdoptCFTag, PtrType ptr) : m_ptr(ptr) { }
64 RetainPtr(AdoptNSTag, PtrType ptr) : m_ptr(ptr) { adoptNSReference(ptr); }
66 RetainPtr(const RetainPtr& o) : m_ptr(o.m_ptr) { if (PtrType ptr = m_ptr) CFRetain(ptr);
    [all...]
  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.h 29 #include <wtf/RetainPtr.h>
42 bool decode(ArgumentDecoder*, RetainPtr<CFArrayRef>& result);
46 bool decode(ArgumentDecoder*, RetainPtr<CFBooleanRef>& result);
50 bool decode(ArgumentDecoder*, RetainPtr<CFDataRef>& result);
54 bool decode(ArgumentDecoder*, RetainPtr<CFDictionaryRef>& result);
58 bool decode(ArgumentDecoder*, RetainPtr<CFNumberRef>& result);
62 bool decode(ArgumentDecoder*, RetainPtr<CFStringRef>& result);
66 bool decode(ArgumentDecoder*, RetainPtr<CFURLRef>& result);
71 bool decode(ArgumentDecoder*, RetainPtr<SecCertificateRef>& result);
  /external/webkit/Source/WebCore/platform/network/
CookieStorage.h 29 #include <wtf/RetainPtr.h>
37 RetainPtr<CFHTTPCookieStorageRef>& privateBrowsingCookieStorage();
  /external/webkit/Source/WebCore/platform/network/cf/
CredentialStorageCFNet.cpp 35 #include <wtf/RetainPtr.h>
41 RetainPtr<CFURLProtectionSpaceRef> protectionSpaceCF(AdoptCF, createCF(protectionSpace));
42 RetainPtr<CFURLCredentialRef> credentialCF(AdoptCF, wkCopyCredentialFromCFPersistentStorage(protectionSpaceCF.get()));
  /external/webkit/Source/WebCore/platform/text/cf/
HyphenationCF.cpp 34 #include <wtf/RetainPtr.h>
41 RetainPtr<CFLocaleRef> AtomicStringKeyedMRUCache<RetainPtr<CFLocaleRef> >::createValueForNullKey()
43 RetainPtr<CFLocaleRef> locale(AdoptCF, CFLocaleCopyCurrent());
49 RetainPtr<CFLocaleRef> AtomicStringKeyedMRUCache<RetainPtr<CFLocaleRef> >::createValueForKey(const AtomicString& localeIdentifier)
51 RetainPtr<CFStringRef> cfLocaleIdentifier(AdoptCF, localeIdentifier.createCFString());
52 RetainPtr<CFLocaleRef> locale(AdoptCF, CFLocaleCreate(kCFAllocatorDefault, cfLocaleIdentifier.get()));
57 static AtomicStringKeyedMRUCache<RetainPtr<CFLocaleRef> >& cfLocaleCache()
59 DEFINE_STATIC_LOCAL(AtomicStringKeyedMRUCache<RetainPtr<CFLocaleRef> >, cache, ())
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/mac/
LayerTreeHostCAMac.h 30 #include <wtf/RetainPtr.h>
58 RetainPtr<WKCARemoteLayerClientRef> m_remoteLayerClient;
59 RetainPtr<CFRunLoopObserverRef> m_flushPendingLayerChangesRunLoopObserver;
  /external/webkit/Source/WebCore/platform/network/curl/
ProxyServerCurl.cpp 30 #include <wtf/RetainPtr.h>
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.h 35 #import <wtf/RetainPtr.h>
58 RetainPtr<WKCARemoteLayerClientRef> m_remoteLayerClient;
59 RetainPtr<id> m_enterFullScreenListener;
60 RetainPtr<id> m_exitFullScreenListener;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGMac.mm 30 #import "wtf/RetainPtr.h"
36 RetainPtr<CFStringRef> utiref(AdoptCF, uti.createCFString());
37 RetainPtr<CFStringRef> mime(AdoptCF, UTTypeCopyPreferredTagWithClass(utiref.get(), kUTTagClassMIMEType));
43 RetainPtr<CFStringRef> type(AdoptCF, uti.createCFString());
44 RetainPtr<CFStringRef> extension(AdoptCF, UTTypeCopyPreferredTagWithClass(type.get(), kUTTagClassFilenameExtension));
  /external/webkit/Source/WebKit2/Shared/
FontInfo.h 30 #include <wtf/RetainPtr.h>
45 RetainPtr<CFDictionaryRef> fontAttributeDictionary;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebInspectorWin.cpp 32 #include <wtf/RetainPtr.h>
39 RetainPtr<CFURLRef> localizedStringsURLRef(AdoptCF, CFBundleCopyResourceURL(webKitBundle(), CFSTR("localizedStrings"), CFSTR("js"), 0));
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
DoNotCopyANullCFURLResponse.cpp 30 #include <wtf/RetainPtr.h>
38 RetainPtr<CFURLResponseRef> nullCFResponse(AdoptCF, WKURLResponseCopyCFURLResponse(kCFAllocatorDefault, nullWKResponse.get()));
  /external/webkit/Source/WebCore/platform/cf/
FileSystemCF.cpp 33 #import <wtf/RetainPtr.h>
40 RetainPtr<CFStringRef> cfString(AdoptCF, path.createCFString());
58 RetainPtr<CFURLRef> pathAsURL(const String& path)
66 return RetainPtr<CFURLRef>(AdoptCF, CFURLCreateWithFileSystemPath(0,
67 RetainPtr<CFStringRef>(AdoptCF, path.createCFString()).get(), pathStyle, FALSE));
  /external/webkit/Source/WebKit2/Shared/win/
WebKitBundle.cpp 30 #include <wtf/RetainPtr.h>
48 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
49 RetainPtr<CFURLRef> dllURL(AdoptCF, CFURLCreateWithFileSystemPath(0, dllPath.get(), kCFURLWindowsPathStyle, false));
50 RetainPtr<CFURLRef> dllDirectoryURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, dllURL.get()));
51 RetainPtr<CFURLRef> resourcesDirectoryURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, dllDirectoryURL.get(), CFSTR("WebKit.resources"), true));
  /external/webkit/Tools/TestWebKitAPI/win/
PlatformUtilitiesWin.cpp 30 #include <wtf/RetainPtr.h>
80 RetainPtr<CFStringRef> cf(const char* utf8String)
82 return RetainPtr<CFStringRef>(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, utf8String, kCFStringEncodingUTF8));
87 RetainPtr<CFURLRef> executableURL(AdoptCF, CFBundleCopyExecutableURL(CFBundleGetMainBundle()));
88 RetainPtr<CFURLRef> executableContainerURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, executableURL.get()));
89 RetainPtr<CFStringRef> dllFilename(AdoptCF, CFStringCreateWithCStringNoCopy(0, injectedBundleDLL, kCFStringEncodingWindowsLatin1, kCFAllocatorNull));
90 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, executableContainerURL.get(), dllFilename.get(), false));
91 RetainPtr<CFStringRef> bundlePath(AdoptCF, CFURLCopyFileSystemPath(bundleURL.get(), kCFURLWindowsPathStyle));
97 RetainPtr<CFURLRef> url(AdoptCF, CFBundleCopyResourceURL(CFBundleGetMainBundle(), cf(resource).get(), cf(extension).get(), 0));
109 RetainPtr<CFURLResponseRef> response(AdoptCF, WKURLResponseCopyCFURLResponse(0, wkResponse))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.h 117 RetainPtr<CGImageRef> createImageForTimeInRect(float, const IntRect&);
120 RetainPtr<AVAsset> m_avAsset;
121 RetainPtr<AVPlayer> m_avPlayer;
122 RetainPtr<AVPlayerItem> m_avPlayerItem;
123 RetainPtr<AVPlayerLayer> m_videoLayer;
124 RetainPtr<WebCoreAVFMovieObserver> m_objcObserver;
125 RetainPtr<AVAssetImageGenerator> m_imageGenerator;
  /external/webkit/Source/WebKit2/Shared/cg/
ShareableBitmapCG.cpp 30 #include <wtf/RetainPtr.h>
50 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
54 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreateWithData(data(),
70 RetainPtr<CGImageRef> ShareableBitmap::makeCGImageCopy()
73 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(graphicsContext->platformContext()));
77 RetainPtr<CGImageRef> ShareableBitmap::makeCGImage()
80 RetainPtr<CGDataProvider> dataProvider(AdoptCF, CGDataProviderCreateWithData(this, data(), sizeInBytes(), releaseDataProviderData));
82 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
83 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_size.width(), m_size.height(), 8, 32, m_size.width() * 4, colorSpace.get(), bitmapInfo(m_flags), dataProvider.get(), 0, false, kCGRenderingIntentDefault));
  /external/webkit/Source/WebCore/platform/mac/
SSLKeyGeneratorMac.cpp 32 #include <wtf/RetainPtr.h>
63 RetainPtr<CFStringRef> challengeStringCF(AdoptCF, challengeString.createCFString());
64 RetainPtr<CFStringRef> keyDescription(AdoptCF, keygenKeychainItemName(url.host()).createCFString());
65 RetainPtr<CFStringRef> result(AdoptCF, wkSignedPublicKeyAndChallengeString(keySize, challengeStringCF.get(), keyDescription.get()));
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
CorrectionPanel.h 32 #import <wtf/RetainPtr.h>
53 RetainPtr<WebView> m_view;
54 RetainPtr<NSString> m_resultForSynchronousDismissal;
55 RetainPtr<NSCondition> m_resultCondition;

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>