Searched refs:CFURLRef (Results 1 - 25 of 88) sorted by relevance

1234

/external/webkit/Source/WebKit2/Shared/API/c/cf/
H A DWKURLCF.h36 WK_EXPORT WKURLRef WKURLCreateWithCFURL(CFURLRef URL);
37 WK_EXPORT CFURLRef WKURLCopyCFURL(CFAllocatorRef alloc, WKURLRef URL);
H A DWKURLCF.cpp39 WKURLRef WKURLCreateWithCFURL(CFURLRef cfURL)
45 CFURLRef WKURLCopyCFURL(CFAllocatorRef allocatorRef, WKURLRef URLRef)
57 CFURLRef result = CFURLCreateAbsoluteURLWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(buffer.data()), buffer.length(), kCFStringEncodingUTF8, 0, true);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebKitBundle.cpp49 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/Source/WebCore/platform/cf/
H A DKURLCFNet.cpp36 KURL::KURL(CFURLRef url)
62 CFURLRef KURL::createCFURL() const
75 CFURLRef result = CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(buffer.data()), buffer.size(), kCFStringEncodingUTF8, 0, true);
83 RetainPtr<CFURLRef> cfURL(AdoptCF, createCFURL());
H A DFileSystemCF.cpp58 RetainPtr<CFURLRef> pathAsURL(const String& path)
66 return RetainPtr<CFURLRef>(AdoptCF, CFURLCreateWithFileSystemPath(0,
/external/webkit/Source/WebCore/platform/mac/
H A DKURLMac.mm40 CFIndex bytesLength = CFURLGetBytes(reinterpret_cast<CFURLRef>(url), 0, 0);
43 CFURLGetBytes(reinterpret_cast<CFURLRef>(url), reinterpret_cast<UInt8*>(bytes), bytesLength);
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DWebInspectorWin.cpp39 RetainPtr<CFURLRef> localizedStringsURLRef(AdoptCF, CFBundleCopyResourceURL(webKitBundle(), CFSTR("localizedStrings"), CFSTR("js"), 0));
/external/webkit/Tools/DumpRenderTree/mac/
H A DWebArchiveDumpSupportMac.mm45 CFURLResponseRef CFURLResponseCreate(CFAllocatorRef alloc, CFURLRef URL, CFStringRef mimeType, SInt64 expectedContentLength, CFStringRef textEncodingName, CFURLCacheStoragePolicy recommendedPolicy);
46 CFURLResponseRef CFURLResponseCreateWithHTTPResponse(CFAllocatorRef alloc, CFURLRef URL, CFHTTPMessageRef httpResponse, CFURLCacheStoragePolicy recommendedPolicy);
60 return CFURLResponseCreate(kCFAllocatorDefault, (CFURLRef)[response URL], (CFStringRef)[response MIMEType], [response expectedContentLength], (CFStringRef)[response textEncodingName], kCFURLCacheStorageAllowed);
71 return CFURLResponseCreateWithHTTPResponse(kCFAllocatorDefault, (CFURLRef)[response URL], httpMessage.get(), kCFURLCacheStorageAllowed);
/external/webkit/Tools/TestWebKitAPI/win/
H A DPlatformUtilitiesWin.cpp87 RetainPtr<CFURLRef> executableURL(AdoptCF, CFBundleCopyExecutableURL(CFBundleGetMainBundle()));
88 RetainPtr<CFURLRef> executableContainerURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, executableURL.get()));
90 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, executableContainerURL.get(), dllFilename.get(), false));
97 RetainPtr<CFURLRef> url(AdoptCF, CFBundleCopyResourceURL(CFBundleGetMainBundle(), cf(resource).get(), cf(extension).get(), 0));
/external/webkit/Source/WebKit/win/
H A DMarshallingHelpers.h42 static CFURLRef PathStringToFileCFURLRef(const WTF::String&);
43 static WTF::String FileCFURLRefToPathString(CFURLRef fileURL);
44 static CFURLRef BSTRToCFURLRef(BSTR);
/external/webkit/Source/WebCore/platform/win/
H A DLocalizedStringsWin.cpp57 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));
/external/webkit/Tools/TestWebKitAPI/mac/
H A DPlatformUtilitiesMac.mm58 return WKURLCreateWithCFURL((CFURLRef)nsURL);
64 return WKURLCreateWithCFURL((CFURLRef)nsURL);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovie.h58 typedef const struct __CFURL * CFURLRef; typedef in typeref:struct:__CFURL
75 void load(CFURLRef, bool preservesPitch);
/external/webkit/Source/WebKit2/Shared/cf/
H A DArgumentCodersCF.h64 // CFURLRef
65 void encode(ArgumentEncoder*, CFURLRef);
66 bool decode(ArgumentDecoder*, RetainPtr<CFURLRef>& result);
H A DArgumentCodersCF.cpp118 encode(encoder, static_cast<CFURLRef>(typeRef));
187 RetainPtr<CFURLRef> url;
450 void encode(ArgumentEncoder* encoder, CFURLRef url)
452 CFURLRef baseURL = CFURLGetBaseURL(url);
460 bool decode(ArgumentDecoder* decoder, RetainPtr<CFURLRef>& result)
462 RetainPtr<CFURLRef> baseURL;
475 CFURLRef url = CFURLCreateWithString(0, string.get(), baseURL.get());
/external/webkit/Tools/MiniBrowser/mac/
H A DAppDelegate.m72 CFURLRef url = WKURLCopyCFURL(0, wkURL);
82 CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
83 CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
91 CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
92 CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
101 CFURLRef cfURL = WKURLCopyCFURL(0, URL);
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceErrorCF.cpp96 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey);
98 RetainPtr<CFURLRef> absoluteURLRef(AdoptCF, CFURLCopyAbsoluteURL(failingURL));
145 RetainPtr<CFURLRef> url(AdoptCF, KURL(ParsedURLString, m_failingURL).createCFURL());
H A DSocketStreamHandle.h66 void executePACFileURL(CFURLRef);
114 RetainPtr<CFURLRef> m_httpsURL; // ws(s): replaced with https:
H A DCookieJarCFNet.cpp127 RetainPtr<CFURLRef> urlCF(AdoptCF, url.createCFURL());
128 RetainPtr<CFURLRef> firstPartyForCookiesCF(AdoptCF, document->firstPartyForCookies().createCFURL());
151 RetainPtr<CFURLRef> urlCF(AdoptCF, url.createCFURL());
165 RetainPtr<CFURLRef> urlCF(AdoptCF, url.createCFURL());
188 RetainPtr<CFURLRef> urlCF(AdoptCF, url.createCFURL());
221 RetainPtr<CFURLRef> urlCF(AdoptCF, url.createCFURL());
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/mac/
H A DInjectedBundleMac.cpp56 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(0, injectedBundlePathStr.get(), kCFURLPOSIXPathStyle, false));
/external/webkit/Source/WebKit2/Platform/mac/
H A DModuleMac.mm34 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(kCFAllocatorDefault, bundlePath.get(), kCFURLPOSIXPathStyle, FALSE));
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSURLExtras.mm441 result = WebCFAutorelease(CFURLCreateAbsoluteURLWithBytes(NULL, bytes, length, kCFStringEncodingUTF8, (CFURLRef)baseURL, YES));
443 result = WebCFAutorelease(CFURLCreateAbsoluteURLWithBytes(NULL, bytes, length, kCFStringEncodingISOLatin1, (CFURLRef)baseURL, YES));
453 CFIndex bytesFilled = CFURLGetBytes((CFURLRef)self, buffer, URL_BYTES_BUFFER_LENGTH);
455 CFIndex bytesToAllocate = CFURLGetBytes((CFURLRef)self, NULL, 0);
457 bytesFilled = CFURLGetBytes((CFURLRef)self, buffer, bytesToAllocate);
464 NSURL *baseURL = (NSURL *)CFURLGetBaseURL((CFURLRef)self);
588 if (!CFURLGetBaseURL((CFURLRef)self))
589 return CFURLGetBytes((CFURLRef)self, NULL, 0) == 0;
624 CFRange fragRg = CFURLGetByteRangeForComponent((CFURLRef)self, component, NULL);
629 CFIndex numBytes = CFURLGetBytes((CFURLRef)sel
[all...]
/external/webkit/Tools/WebKitTestRunner/win/
H A DTestControllerWin.cpp134 RetainPtr<CFURLRef> bundleURL(AdoptCF, CFBundleCopyExecutableURL(CFBundleGetMainBundle()));
135 RetainPtr<CFURLRef> bundleDirectoryURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, bundleURL.get()));
137 RetainPtr<CFURLRef> testPluginDirectoryURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, bundleDirectoryURL.get(), testPluginDirectoryNameString.get(), true));
/external/webkit/Source/JavaScriptGlue/
H A DUserObjectImp.cpp190 CFURLRef absURL = CFURLCopyAbsoluteURL((CFURLRef)cfValue);
267 CFURLRef absURL = CFURLCopyAbsoluteURL((CFURLRef)cfValue);
390 CFURLRef absURL = CFURLCopyAbsoluteURL((CFURLRef)cfValue);
/external/stlport/test/eh/
H A Dmwerks_console_OS_X.c39 CFURLRef theFrameworkURL;
40 CFURLRef theBundleURL;

Completed in 489 milliseconds

1234