Searched refs:urlRef (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/
H A DWKURLQt.cpp37 QUrl WKURLCopyQUrl(WKURLRef urlRef) argument
39 if (!urlRef)
41 const WTF::String& string = toImpl(urlRef)->string();
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKUserContentURLPattern.cpp45 bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef) argument
47 return toImpl(urlPatternRef)->matchesURL(toWTFString(urlRef));
H A DWKUserContentURLPattern.h40 WK_EXPORT bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef);
H A DWKSharedAPICast.h167 inline String toWTFString(WKURLRef urlRef) argument
169 if (!urlRef)
171 return toImpl(urlRef)->string();
/external/webkit/Source/WebKit2/UIProcess/API/C/cg/
H A DWKIconDatabaseCG.cpp37 CGImageRef WKIconDatabaseTryGetCGImageForURL(WKIconDatabaseRef iconDatabaseRef, WKURLRef urlRef, WKSize size) argument
39 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef));
/external/webkit/Tools/WebKitTestRunner/
H A DStringFunctions.h95 inline std::ostream& operator<<(std::ostream& out, WKURLRef urlRef) argument
97 if (!urlRef)
100 return out << toSTD(adoptWK(WKURLCopyString(urlRef)));
103 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKURLRef>& urlRef) argument
105 return out << urlRef.get();
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundle.cpp91 void WKBundleAddUserScript(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitelistRef, WKArrayRef blacklistRef, WKUserScriptInjectionTime injectionTimeRef, WKUserContentInjectedFrames injectedFramesRef) argument
93 toImpl(bundleRef)->addUserScript(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelistRef), toImpl(blacklistRef), toUserScriptInjectionTime(injectionTimeRef), toUserContentInjectedFrames(injectedFramesRef));
96 void WKBundleAddUserStyleSheet(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitelistRef, WKArrayRef blacklistRef, WKUserContentInjectedFrames injectedFramesRef) argument
98 toImpl(bundleRef)->addUserStyleSheet(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelistRef), toImpl(blacklistRef), toUserContentInjectedFrames(injectedFramesRef));
101 void WKBundleRemoveUserScript(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef) argument
103 toImpl(bundleRef)->removeUserScript(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef));
106 void WKBundleRemoveUserStyleSheet(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef) argument
108 toImpl(bundleRef)->removeUserStyleSheet(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef));
H A DWKBundleFrame.cpp179 bool WKBundleFrameAllowsFollowingLink(WKBundleFrameRef frameRef, WKURLRef urlRef) argument
181 return toImpl(frameRef)->allowsFollowingLink(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()));
219 WKStringRef WKBundleFrameCopySuggestedFilenameForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef) argument
221 return toCopiedAPI(toImpl(frameRef)->suggestedFilenameForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));
224 WKStringRef WKBundleFrameCopyMIMETypeForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef) argument
226 return toCopiedAPI(toImpl(frameRef)->mimeTypeForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));
H A DWKBundlePage.cpp220 bool WKBundlePageHasLocalDataForURL(WKBundlePageRef pageRef, WKURLRef urlRef) argument
222 return toImpl(pageRef)->hasLocalDataForURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()));
/external/webkit/Source/WebCore/platform/audio/mac/
H A DAudioFileReaderMac.cpp71 CFURLRef urlRef = CFURLCreateFromFSRef(0, &fsref);
72 if (!urlRef)
75 ExtAudioFileOpenURL(urlRef, &m_extAudioFileRef);
77 if (urlRef)
78 CFRelease(urlRef);
/external/webkit/Source/WebKit/win/
H A DMarshallingHelpers.cpp74 CFURLRef urlRef = CFURLCreateWithString(0, urlCFString, 0);
77 return urlRef;
H A DWebHistory.cpp245 RetainPtr<CFURLRef> urlRef(AdoptCF, MarshallingHelpers::BSTRToCFURLRef(url));
247 hr = loadHistoryGutsFromURL(urlRef.get(), discardedItems.get(), error);
361 RetainPtr<CFURLRef> urlRef(AdoptCF, MarshallingHelpers::BSTRToCFURLRef(url));
363 hr = saveHistoryGuts(urlRef.get(), error);
H A DWebPreferences.cpp434 RetainPtr<CFURLRef> urlRef(AdoptCF, CFURLCreateFromFileSystemRepresentation(0, reinterpret_cast<const UInt8*>(path.data()), path.length(), false));
435 if (!urlRef)
438 RetainPtr<CFReadStreamRef> stream(AdoptCF, CFReadStreamCreateWithFile(0, urlRef.get()));
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsContextAndroid.cpp1171 CFURLRef urlRef = link.createCFURL();
1172 if (urlRef) {
1182 CGPDFContextSetURLForRect(context, urlRef,
1185 CFRelease(urlRef);
/external/skia/src/svg/
H A DSkSVGPaintState.cpp415 bool urlRef = strncmp(attrValue, "url(", 4) == 0;
418 bool newColor = urlRef == false && colorNone == false && lastEqual == false;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp1277 RetainPtr<CFURLRef> urlRef(AdoptCF, link.createCFURL());
1278 if (!urlRef)
1290 CGPDFContextSetURLForRect(context, urlRef.get(),

Completed in 1049 milliseconds