HomeSort by relevance Sort by last modified time
    Searched full:urlref (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/
WKURLQt.cpp 37 QUrl WKURLCopyQUrl(WKURLRef urlRef)
39 if (!urlRef)
41 const WTF::String& string = toImpl(urlRef)->string();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundle.cpp 91 void WKBundleAddUserScript(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitelistRef, WKArrayRef blacklistRef, WKUserScriptInjectionTime injectionTimeRef, WKUserContentInjectedFrames injectedFramesRef)
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)
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)
103 toImpl(bundleRef)->removeUserScript(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef));
106 void WKBundleRemoveUserStyleSheet(WKBundleRef bundleRef, WKBundlePageGroupRef pageGroupRef, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef)
108 toImpl(bundleRef)->removeUserStyleSheet(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(urlRef));
WKBundleFrame.cpp 179 bool WKBundleFrameAllowsFollowingLink(WKBundleFrameRef frameRef, WKURLRef urlRef)
181 return toImpl(frameRef)->allowsFollowingLink(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()));
219 WKStringRef WKBundleFrameCopySuggestedFilenameForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef)
221 return toCopiedAPI(toImpl(frameRef)->suggestedFilenameForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));
224 WKStringRef WKBundleFrameCopyMIMETypeForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef)
226 return toCopiedAPI(toImpl(frameRef)->mimeTypeForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));
WKBundlePage.cpp 220 bool WKBundlePageHasLocalDataForURL(WKBundlePageRef pageRef, WKURLRef urlRef)
222 return toImpl(pageRef)->hasLocalDataForURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()));
  /external/webkit/Tools/WebKitTestRunner/
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/Shared/API/c/cf/
WKURLCF.cpp 45 CFURLRef WKURLCopyCFURL(CFAllocatorRef allocatorRef, WKURLRef URLRef)
47 ASSERT(!toImpl(URLRef)->string().isNull());
56 CString buffer = toImpl(URLRef)->string().utf8();
  /external/webkit/Source/WebKit2/Shared/API/c/
WKUserContentURLPattern.cpp 45 bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef)
47 return toImpl(urlPatternRef)->matchesURL(toWTFString(urlRef));
WKUserContentURLPattern.h 40 WK_EXPORT bool WKUserContentURLPatternMatchesURL(WKUserContentURLPatternRef urlPatternRef, WKURLRef urlRef);
WKSharedAPICast.h 167 inline String toWTFString(WKURLRef urlRef)
169 if (!urlRef)
171 return toImpl(urlRef)->string();
  /external/webkit/Source/WebKit2/UIProcess/API/C/cg/
WKIconDatabaseCG.cpp 37 CGImageRef WKIconDatabaseTryGetCGImageForURL(WKIconDatabaseRef iconDatabaseRef, WKURLRef urlRef, WKSize size)
39 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef));
  /external/webkit/Source/WebCore/platform/audio/mac/
AudioFileReaderMac.cpp 71 CFURLRef urlRef = CFURLCreateFromFSRef(0, &fsref);
72 if (!urlRef)
75 ExtAudioFileOpenURL(urlRef, &m_extAudioFileRef);
77 if (urlRef)
78 CFRelease(urlRef);
  /external/chromium/chrome/browser/rlz/
rlz.cc 229 const TemplateURLRef* urlref = url_template->url(); local
230 if (!urlref)
232 return urlref->HasGoogleBaseURLs();
  /external/webkit/Source/WebKit/win/
MarshallingHelpers.cpp 74 CFURLRef urlRef = CFURLCreateWithString(0, urlCFString, 0);
77 return urlRef;
WebHistory.cpp 245 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);
    [all...]
WebPreferences.cpp 434 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()));
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.cpp 58 void WKPageLoadURL(WKPageRef pageRef, WKURLRef URLRef)
60 toImpl(pageRef)->loadURL(toWTFString(URLRef));
  /external/skia/src/svg/
SkSVGPaintState.cpp 407 bool urlRef = strncmp(attrValue, "url(", 4) == 0;
410 bool newColor = urlRef == false && colorNone == false && lastEqual == false;
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp     [all...]
  /external/e2fsprogs/doc/
texinfo.tex     [all...]
  /external/grub/docs/
texinfo.tex     [all...]
  /external/libffi/
texinfo.tex     [all...]
  /ndk/sources/host-tools/make-3.81/config/
texinfo.tex     [all...]
  /external/bison/build-aux/
texinfo.tex     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]

Completed in 5079 milliseconds