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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/platform/cf/
SharedBufferCF.cpp 108 Vector<RetainPtr<CFDataRef> >::const_iterator end = m_dataArray.end();
109 for (Vector<RetainPtr<CFDataRef> >::const_iterator it = m_dataArray.begin(); it != end; ++it) {
  /external/webkit/Source/WebCore/platform/graphics/
Icon.h 30 #include <wtf/RetainPtr.h>
71 RetainPtr<NSImage> m_nsImage;
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 29 #include <wtf/RetainPtr.h>
95 RetainPtr<CGContextRef> m_cgContext;
ImageCG.cpp 39 #include <wtf/RetainPtr.h>
115 RetainPtr<CGContextRef> bmap(AdoptCF, CGBitmapContextCreate(pixel, 1, 1, 8, sizeof(pixel), deviceRGBColorSpaceRef(),
130 static RetainPtr<CGImageRef> imageWithColorSpace(CGImageRef originalImage, ColorSpace colorSpace)
143 return RetainPtr<CGImageRef>(AdoptCF, CGImageCreateCopyWithColorSpace(originalImage, sRGBColorSpaceRef()));
145 return RetainPtr<CGImageRef>(AdoptCF, CGImageCreateCopyWithColorSpace(originalImage, linearRGBColorSpaceRef()));
174 RetainPtr<CGImageRef> image = frameAtIndex(m_currentFrame);
294 RetainPtr<CGImageRef> subImage;
333 RetainPtr<CGPatternRef> pattern(AdoptCF, CGPatternCreate(subImage.get(), CGRectMake(0, 0, tileRect.width(), tileRect.height()),
341 RetainPtr<CGColorSpaceRef> patternSpace(AdoptCF, CGColorSpaceCreatePattern(0));
344 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreateWithPattern(patternSpace.get(), pattern.get(), &alpha))
    [all...]
ColorCG.cpp 33 #include <wtf/RetainPtr.h>
115 static RetainPtr<CGColorRef>* cachedCGColors = new RetainPtr<CGColorRef>[cacheSize];
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 31 #include <wtf/RetainPtr.h>
87 RetainPtr<NSPasteboard> m_pasteboard;
  /external/webkit/Source/WebCore/platform/network/
ProtectionSpace.cpp 31 #include <wtf/RetainPtr.h>
96 RetainPtr<CFURLProtectionSpaceRef> cfSpace(AdoptCF, createCF(*this));
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 95 RetainPtr<CFDictionaryRef> oldHeaderFields(AdoptCF, CFURLRequestCopyAllHTTPHeaderFields(request));
118 RetainPtr<CFURLRef> url(AdoptCF, ResourceRequest::url().createCFURL());
119 RetainPtr<CFURLRef> firstPartyForCookies(AdoptCF, ResourceRequest::firstPartyForCookies().createCFURL());
130 RetainPtr<CFStringRef> requestMethod(AdoptCF, httpMethod().createCFString());
138 RetainPtr<CFMutableArrayRef> encodingFallbacks(AdoptCF, CFArrayCreateMutable(kCFAllocatorDefault, fallbackCount, 0));
140 RetainPtr<CFStringRef> encodingName(AdoptCF, m_responseContentDispositionEncodingFallbackArray[i].createCFString());
148 RetainPtr<CFHTTPCookieStorageRef> cookieStorage(AdoptCF, CFURLRequestCopyHTTPCookieStorage(m_cfRequest.get()));
188 RetainPtr<CFArrayRef> encodingFallbacks(AdoptCF, copyContentDispositionEncodingFallbackArray(m_cfRequest.get()));
SocketStreamHandleCFNet.cpp 171 RetainPtr<CFDictionaryRef> proxyDictionary(AdoptCF, CFNetworkCopySystemProxySettings());
174 RetainPtr<CFDictionaryRef> proxyDictionary(AdoptCF, SCDynamicStoreCopyProxies(0));
189 RetainPtr<CFArrayRef> proxyArray(AdoptCF, CFNetworkCopyProxiesForURL(m_httpsURL.get(), proxyDictionary.get()));
258 RetainPtr<CFDictionaryRef> proxyDictionary(AdoptCF, SCDynamicStoreCopyProxies(0));
313 RetainPtr<CFStringRef> host(AdoptCF, m_url.host().createCFString());
334 RetainPtr<CFDictionaryRef> connectDictionary(AdoptCF, CFDictionaryCreate(0, proxyKeys, proxyValues, WTF_ARRAY_LENGTH(proxyKeys), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
346 RetainPtr<CFDictionaryRef> settings(AdoptCF, CFDictionaryCreate(0, keys, values, WTF_ARRAY_LENGTH(keys), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
386 RetainPtr<CFHTTPAuthenticationRef> authentication(AdoptCF, CFHTTPAuthenticationCreateFromResponse(0, proxyResponse));
396 RetainPtr<CFStringRef> methodCF(AdoptCF, CFHTTPAuthenticationCopyMethod(authentication.get()));
397 RetainPtr<CFStringRef> realmCF(AdoptCF, CFHTTPAuthenticationCopyRealm(authentication.get()))
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeMac.h 28 #import <wtf/RetainPtr.h>
228 mutable RetainPtr<NSPopUpButtonCell> m_popupButton;
229 mutable RetainPtr<NSSearchFieldCell> m_search;
230 mutable RetainPtr<NSMenu> m_searchMenuTemplate;
231 mutable RetainPtr<NSSliderCell> m_sliderThumbHorizontal;
232 mutable RetainPtr<NSSliderCell> m_sliderThumbVertical;
233 mutable RetainPtr<NSLevelIndicatorCell> m_levelIndicator;
240 RetainPtr<WebCoreRenderThemeNotificationObserver> m_notificationObserver;
  /external/webkit/Source/WebKit/mac/Plugins/
WebBasePluginPackage.h 30 #import <wtf/RetainPtr.h>
63 RetainPtr<CFBundleRef> cfBundle;
  /external/webkit/Source/WebKit/win/
WebError.h 32 #include <wtf/RetainPtr.h>
93 RetainPtr<CFDictionaryRef> m_cfErrorUserInfoDict;
  /external/webkit/Source/WebKit2/Platform/cg/
CGUtilities.cpp 29 #include <wtf/RetainPtr.h>
52 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(bitmapContext));
  /external/webkit/Source/WebKit2/Shared/
NativeWebKeyboardEvent.h 34 #include <wtf/RetainPtr.h>
70 RetainPtr<NSEvent> m_nativeEvent;
NativeWebMouseEvent.h 32 #include <wtf/RetainPtr.h>
66 RetainPtr<NSEvent> m_nativeEvent;
  /external/webkit/Source/WebKit2/UIProcess/
ChunkedUpdateDrawingAreaProxy.h 37 #include <wtf/RetainPtr.h>
95 RetainPtr<CGContextRef> m_bitmapContext;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebContextWin.cpp 59 RetainPtr<CFURLCacheRef> cfurlCache(AdoptCF, CFURLCacheCopySharedURLCache());
63 RetainPtr<CFStringRef> cfURLCachePath(AdoptCF, wkCopyFoundationCacheDirectory());
  /external/webkit/Source/WebCore/platform/graphics/cocoa/
FontPlatformDataCocoa.mm 203 RetainPtr<CTFontRef> sourceFont(AdoptCF, CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, 0));
204 RetainPtr<CTFontDescriptorRef> sourceDescriptor(AdoptCF, CTFontCopyFontDescriptor(sourceFont.get()));
205 RetainPtr<CFNumberRef> featureType(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &featureTypeValue));
206 RetainPtr<CFNumberRef> featureSelector(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &featureSelectorValue));
207 RetainPtr<CTFontDescriptorRef> newDescriptor(AdoptCF, CTFontDescriptorCreateCopyWithFeature(sourceDescriptor.get(), featureType.get(), featureSelector.get()));
208 RetainPtr<CTFontRef> newFont(AdoptCF, CTFontCreateWithFontDescriptor(newDescriptor.get(), m_size, 0));
218 RetainPtr<CFStringRef> cgFontDescription(AdoptCF, CFCopyDescription(cgFont()));
  /external/webkit/Source/WebCore/platform/graphics/mac/
GlyphPageTreeNodeMac.cpp 72 RetainPtr<CFStringRef> string(AdoptCF, CFStringCreateWithCharactersNoCopy(kCFAllocatorDefault, buffer, bufferLength, kCFAllocatorNull));
73 RetainPtr<CFAttributedStringRef> attributedString(AdoptCF, CFAttributedStringCreate(kCFAllocatorDefault, string.get(), fontData->getCFStringAttributes(0, fontData->hasVerticalGlyphs() ? Vertical : Horizontal)));
74 RetainPtr<CTLineRef> line(AdoptCF, CTLineCreateWithAttributedString(attributedString.get()));
89 RetainPtr<CGFontRef> cgFont(AdoptCF, CTFontCopyGraphicsFont(fontData->platformData().ctFont(), 0));
99 RetainPtr<CGFontRef> runCGFont(AdoptCF, CTFontCopyGraphicsFont(runFont, 0));
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.cpp 79 static RetainPtr<IOSurfaceRef> createIOSurface(const IntSize& size)
111 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, CFDictionaryCreate(0, keys, values, numKeys, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
115 return RetainPtr<IOSurfaceRef>(AdoptCF, IOSurfaceCreate(dictionary.get()));
120 RetainPtr<IOSurfaceRef> ioSurface = createIOSurface(size);
131 RetainPtr<IOSurfaceRef> ioSurface(AdoptCF, IOSurfaceLookupFromMachPort(handle.m_port));
  /external/webkit/Tools/WebKitTestRunner/cg/
TestInvocationCG.cpp 34 #include <wtf/RetainPtr.h>
49 RetainPtr<CGImageRef> image(AdoptCF, WKImageCreateCGImage(wkImage));
104 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(bitmapContext));
105 RetainPtr<CFMutableDataRef> imageData(AdoptCF, CFDataCreateMutable(0, 0));
106 RetainPtr<CGImageDestinationRef> imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0));
  /external/webkit/Source/WebCore/platform/
DefaultLocalizationStrategy.cpp 39 #include <wtf/RetainPtr.h>
54 RetainPtr<CFStringRef> formatCFString(AdoptCF, format.createCFString());
55 RetainPtr<CFStringRef> result(AdoptCF, CFStringCreateWithFormatAndArguments(0, 0, formatCFString.get(), arguments));
306 RetainPtr<CFStringRef> selectedCFString(AdoptCF, selectedString.createCFString());
711 RetainPtr<CFStringRef> hostCFString(AdoptCF, host.createCFString());
721 RetainPtr<CFStringRef> filenameCFString(AdoptCF, filename.createCFString());
722 RetainPtr<CFLocaleRef> locale(AdoptCF, CFLocaleCopyCurrent());
723 RetainPtr<CFNumberFormatterRef> formatter(AdoptCF, CFNumberFormatterCreate(0, locale.get(), kCFNumberFormatterDecimalStyle));
726 RetainPtr<CFNumberRef> width(AdoptCF, CFNumberCreate(0, kCFNumberIntType, &widthInt));
727 RetainPtr<CFStringRef> widthString(AdoptCF, CFNumberFormatterCreateStringWithNumber(0, formatter.get(), widt (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h 35 #include <wtf/RetainPtr.h>
145 RetainPtr<CAPropertyAnimation> m_animation;
147 RetainPtr<CACFAnimationRef> m_animation;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 38 #include <wtf/RetainPtr.h>
149 RetainPtr<NSObject> m_activationObserver;
150 RetainPtr<WKPlaceholderModalWindow *> m_placeholderWindow;
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPopupMenuProxyMac.mm 71 RetainPtr<NSMutableParagraphStyle> paragraphStyle(AdoptNS, [[NSParagraphStyle defaultParagraphStyle] mutableCopy]);
75 RetainPtr<NSMutableDictionary> attributes(AdoptNS, [[NSMutableDictionary alloc] initWithObjectsAndKeys:
80 RetainPtr<NSNumber> writingDirectionValue(AdoptNS, [[NSNumber alloc] initWithInteger:writingDirection + NSTextWritingDirectionOverride]);
81 RetainPtr<NSArray> writingDirectionArray(AdoptNS, [[NSArray alloc] initWithObjects:writingDirectionValue.get(), nil]);
84 RetainPtr<NSAttributedString> string(AdoptNS, [[NSAttributedString alloc] initWithString:nsStringFromWebCoreString(items[i].m_text) attributes:attributes.get()]);
127 RetainPtr<NSView> dummyView(AdoptNS, [[NSView alloc] initWithFrame:rect]);

Completed in 1252 milliseconds

1 2 3 4 5 67 8 91011>>