/external/webkit/Tools/WebKitTestRunner/ |
D | StringFunctions.h | 95 inline std::ostream& operator<<(std::ostream& out, WKURLRef urlRef) 97 if (!urlRef) 100 return out << toSTD(adoptWK(WKURLCopyString(urlRef))); 103 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKURLRef>& urlRef) 105 return out << urlRef.get();
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundle.cpp | 91 …, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitel… in WKBundleAddUserScript() argument 93 …geGroupRef), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelist… in WKBundleAddUserScript() 96 …, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitel… in WKBundleAddUserStyleSheet() argument 98 …geGroupRef), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelist… in WKBundleAddUserStyleSheet() 101 …ndleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef) in WKBundleRemoveUserScript() argument 103 …pl(bundleRef)->removeUserScript(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef)); in WKBundleRemoveUserScript() 106 …ndleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef) in WKBundleRemoveUserStyleSheet() argument 108 …undleRef)->removeUserStyleSheet(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef)); in WKBundleRemoveUserStyleSheet()
|
D | WKBundleFrame.cpp | 179 bool WKBundleFrameAllowsFollowingLink(WKBundleFrameRef frameRef, WKURLRef urlRef) in WKBundleFrameAllowsFollowingLink() argument 181 …return toImpl(frameRef)->allowsFollowingLink(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string… in WKBundleFrameAllowsFollowingLink() 219 …ef WKBundleFrameCopySuggestedFilenameForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef) in WKBundleFrameCopySuggestedFilenameForResourceWithURL() argument 221 …f)->suggestedFilenameForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()))); in WKBundleFrameCopySuggestedFilenameForResourceWithURL() 224 WKStringRef WKBundleFrameCopyMIMETypeForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef) in WKBundleFrameCopyMIMETypeForResourceWithURL() argument 226 …l(frameRef)->mimeTypeForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()))); in WKBundleFrameCopyMIMETypeForResourceWithURL()
|
D | WKBundlePage.cpp | 220 bool WKBundlePageHasLocalDataForURL(WKBundlePageRef pageRef, WKURLRef urlRef) in WKBundlePageHasLocalDataForURL() argument 222 …return toImpl(pageRef)->hasLocalDataForURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()… in WKBundlePageHasLocalDataForURL()
|
/external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/ |
D | WKURLQt.cpp | 37 QUrl WKURLCopyQUrl(WKURLRef urlRef) in WKURLCopyQUrl() argument 39 if (!urlRef) in WKURLCopyQUrl() 41 const WTF::String& string = toImpl(urlRef)->string(); in WKURLCopyQUrl()
|
/external/webkit/Source/WebCore/platform/audio/mac/ |
D | AudioFileReaderMac.cpp | 71 CFURLRef urlRef = CFURLCreateFromFSRef(0, &fsref); in AudioFileReader() local 72 if (!urlRef) in AudioFileReader() 75 ExtAudioFileOpenURL(urlRef, &m_extAudioFileRef); in AudioFileReader() 77 if (urlRef) in AudioFileReader() 78 CFRelease(urlRef); in AudioFileReader()
|
/external/webkit/Source/WebKit2/UIProcess/API/C/cg/ |
D | WKIconDatabaseCG.cpp | 37 CGImageRef WKIconDatabaseTryGetCGImageForURL(WKIconDatabaseRef iconDatabaseRef, WKURLRef urlRef, WK… in WKIconDatabaseTryGetCGImageForURL() argument 39 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef)); in WKIconDatabaseTryGetCGImageForURL()
|
/external/webkit/Source/WebKit2/Shared/API/c/ |
D | WKUserContentURLPattern.cpp | 45 bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef) in WKUserContentURLPatternMatchesURL() argument 47 return toImpl(urlPatternRef)->matchesURL(toWTFString(urlRef)); in WKUserContentURLPatternMatchesURL()
|
D | WKUserContentURLPattern.h | 40 … bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef);
|
D | WKSharedAPICast.h | 167 inline String toWTFString(WKURLRef urlRef) in toWTFString() argument 169 if (!urlRef) in toWTFString() 171 return toImpl(urlRef)->string(); in toWTFString()
|
/external/webkit/Source/WebKit/win/ |
D | MarshallingHelpers.cpp | 74 CFURLRef urlRef = CFURLCreateWithString(0, urlCFString, 0); in BSTRToCFURLRef() local 77 return urlRef; in BSTRToCFURLRef()
|
D | WebHistory.cpp | 245 RetainPtr<CFURLRef> urlRef(AdoptCF, MarshallingHelpers::BSTRToCFURLRef(url)); in loadFromURL() local 247 hr = loadHistoryGutsFromURL(urlRef.get(), discardedItems.get(), error); in loadFromURL() 361 RetainPtr<CFURLRef> urlRef(AdoptCF, MarshallingHelpers::BSTRToCFURLRef(url)); in saveToURL() local 363 hr = saveHistoryGuts(urlRef.get(), error); in saveToURL()
|
D | WebPreferences.cpp | 434 …RetainPtr<CFURLRef> urlRef(AdoptCF, CFURLCreateFromFileSystemRepresentation(0, reinterpret_cast<co… in migrateWebKitPreferencesToCFPreferences() local 435 if (!urlRef) in migrateWebKitPreferencesToCFPreferences() 438 RetainPtr<CFReadStreamRef> stream(AdoptCF, CFReadStreamCreateWithFile(0, urlRef.get())); in migrateWebKitPreferencesToCFPreferences()
|
/external/skia/src/svg/ |
D | SkSVGPaintState.cpp | 407 bool urlRef = strncmp(attrValue, "url(", 4) == 0; in writeChangedElements() local 410 bool newColor = urlRef == false && colorNone == false && lastEqual == false; in writeChangedElements()
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 1277 RetainPtr<CFURLRef> urlRef(AdoptCF, link.createCFURL()); in setURLForRect() local 1278 if (!urlRef) in setURLForRect() 1290 CGPDFContextSetURLForRect(context, urlRef.get(), in setURLForRect()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2002-12-03 | 13742 KURL::KWQKURLPrivate::compose): out of paranoia, make sure urlRef
|