/external/webkit/Source/WebKit/android/jni/ |
WebIconDatabase.cpp | 207 static jobject IconForPageUrl(JNIEnv* env, jobject obj, jstring url) 209 LOG_ASSERT(url, "No url given to iconForPageUrl"); 210 WTF::String urlStr = jstringToWtfString(env, url); 219 static void RetainIconForPageUrl(JNIEnv* env, jobject obj, jstring url) 221 LOG_ASSERT(url, "No url given to retainIconForPageUrl"); 222 WTF::String urlStr = jstringToWtfString(env, url); 228 static void ReleaseIconForPageUrl(JNIEnv* env, jobject obj, jstring url) 230 LOG_ASSERT(url, "No url given to releaseIconForPageUrl") [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebPageSerializer.h | 88 WEBKIT_API static WebString generateMarkOfTheWebDeclaration(const WebURL& url);
|
WebSecurityPolicy.h | 43 // Registers a URL scheme to be treated as a local scheme (i.e., with the 48 // Registers a URL scheme to be treated as a noAccess scheme. This means 49 // that pages loaded with this URL scheme cannot access pages loaded with 50 // any other URL scheme. 53 // Registers a URL scheme to be treated as display-isolated. This means 59 // Registers a URL scheme to not generate mixed content warnings when 72 // Returns whether the url should be allowed to see the referrer 74 WEBKIT_API static bool shouldHideReferrer(const WebURL& url, const WebString& referrer);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebPageSerializerImpl.cpp | 49 // "document.write('<base href="http://www.yahoo.com/"...');" to setup base URL 65 // URL. Based on this behavior, when we encounter a base tag, we comment it and 67 // The new added base tag can help engine to locate correct base URL for 75 // override the incorrect base URL and make sure we alway load correct local 109 WebPageSerializerImpl::SerializeDomParam::SerializeDomParam(const KURL& url, 113 : url(url) 160 result.append(WebPageSerializer::generateMarkOfTheWebDeclaration(param->url)); 293 m_client->didSerializeDataForFrame(param->url, 332 String completeURL = subFrame ? subFrame->frame()->document()->url() : 455 KURL url = links[i]; local 504 const KURL& url = document->url(); local [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
ContextMenuClientGtk.h | 49 virtual void downloadURL(const WebCore::KURL& url);
|
/external/webkit/Source/WebKit/mac/Plugins/ |
WebJavaPlugIn.h | 67 @param callingURL The URL of the page that contains the JavaScript that is calling Java. 82 callingURL:(NSURL *)url
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebSecurityOriginPrivate.h | 38 - (id)initWithURL:(NSURL *)url;
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebDesktopNotificationsDelegate.h | 53 virtual WebCore::NotificationPresenter::Permission checkPermission(const KURL& url);
|
/external/webkit/Source/WebKit/win/ |
WebHistoryItem.h | 64 /* [retval][out] */ BSTR *url); 67 /* [retval][out] */ BSTR *url); 93 virtual HRESULT STDMETHODCALLTYPE RSSFeedReferrer(BSTR* url); 94 virtual HRESULT STDMETHODCALLTYPE setRSSFeedReferrer(BSTR url);
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
ContextMenuClientWinCE.cpp | 55 void ContextMenuClientWinCE::downloadURL(const KURL& url)
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebHistoryClient.h | 45 void didUpdateHistoryTitle(WebContext*, WebPageProxy*, const String& title, const String& url, WebFrameProxy*);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePrivate.h | 58 WK_EXPORT void WKBundleAddUserScript(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKStringRef source, WKURLRef url, WKArrayRef whitelist, WKArrayRef blacklist, WKUserScriptInjectionTime injectionTime, WKUserContentInjectedFrames injectedFrames); 59 WK_EXPORT void WKBundleAddUserStyleSheet(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKStringRef source, WKURLRef url, WKArrayRef whitelist, WKArrayRef blacklist, WKUserContentInjectedFrames injectedFrames); 60 WK_EXPORT void WKBundleRemoveUserScript(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKURLRef url); 61 WK_EXPORT void WKBundleRemoveUserStyleSheet(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKURLRef url);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundle.h | 102 void addUserScript(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserScriptInjectionTime, WebCore::UserContentInjectedFrames); 103 void addUserStyleSheet(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserContentInjectedFrames); 104 void removeUserScript(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& url); 105 void removeUserStyleSheet(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& url);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebContextMenuClient.h | 52 virtual void downloadURL(const WebCore::KURL& url);
|
/external/webkit/Tools/BuildSlaveSupport/ |
build-launcher-app | 65 my ($url, $branch); 67 my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`; 68 ($url) = ($svnInfo =~ m/URL: (.+)/g); 71 ($url) = ($gitLog =~ m/ +git-svn-id: (.+)@\d+ /g); 73 ($branch) = ($url =~ m/\/webkit\/(trunk|branches\/[^\/]+)/);
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
LeaksViewer.css | 26 #url-prompt-container { 36 #url-prompt {
|
/external/webkit/Tools/TestResultServer/model/ |
dashboardfile.py | 67 url = SVN_PATH_DASHBOARD + urllib.quote_plus(name) 69 logging.info("Grab file from SVN, url: %s.", url) 71 file = urllib2.urlopen(url) 73 logging.error("Failed to grab dashboard file: %s.", url)
|
/frameworks/base/core/java/android/webkit/ |
Network.java | 193 * Request a url from either the network or the file system. 194 * @param url The url to load. 206 String url = loader.url(); local 208 // Not a valid url, return false because we won't service the request! 209 if (!URLUtil.isValidUrl(url)) { 215 if (URLUtil.isAssetUrl(url) || URLUtil.isResourceUrl(url) 216 || URLUtil.isFileUrl(url) || URLUtil.isDataUrl(url)) [all...] |
/frameworks/base/include/media/ |
MediaMetadataRetrieverInterface.h | 35 const char *url,
|
/frameworks/base/media/libmediaplayerservice/ |
MidiMetadataRetriever.h | 35 const char *url, const KeyedVector<String8, String8> *headers);
|
/libcore/luni/src/main/java/java/net/ |
HttpURLConnection.java | 35 * URL#openConnection() URL.openConnection()} and casting the result to 57 * URL url = new URL("http://www.android.com/"); 58 * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); 69 * Calling {@link URL#openConnection()} on a URL with the "https" 103 * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); 157 * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection() [all...] |
/packages/apps/Browser/src/com/android/browser/ |
DownloadHandler.java | 52 * @param url The full url to the content that should be downloaded 58 public static void onDownloadStart(Activity activity, String url, 69 intent.setDataAndType(Uri.parse(url), mimetype); 76 // load the url only to try and download it again. 89 + " over " + Uri.parse(url).getScheme(), 98 onDownloadStartNoStream(activity, url, userAgent, contentDisposition, 103 // instead of just encoding URL's properly 136 * @param url The full url to the content that should be downloade [all...] |
WebViewController.java | 62 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url); 75 void onDownloadStart(Tab tab, String url, String useragent, String contentDisposition, 108 Tab openTab(String url, boolean incognito, boolean setActive, 111 Tab openTab(String url, Tab parent, boolean setActive,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
AdtTestData.java | 27 import java.net.URL; 57 URL url = this.getClass().getClassLoader().getResource("."); //$NON-NLS-1$ local 62 mOsRootDataPath = FileLocator.resolve(url).getFile(); 64 // Fix the path returned by the URL resolver 78 sLogger.warning("IOException while using FileLocator, reverting to url"); 79 mOsRootDataPath = url.getFile(); 82 sLogger.info("Running as an plain JUnit test, using url as-is"); 83 mOsRootDataPath = url.getFile();
|
/external/chromium/chrome/browser/importer/ |
ie_importer.cc | 178 GURL url(url_string); 180 if (!url.is_valid() || 181 (std::find(kSchemes, kSchemes + total_schemes, url.scheme()) == 185 history::URLRow row(url); 281 GURL url(ac_list[i].key.c_str()); 282 if (!(LowerCaseEqualsASCII(url.scheme(), chrome::kHttpScheme) || 283 LowerCaseEqualsASCII(url.scheme(), chrome::kHttpsScheme))) { 293 form.origin = url.ReplaceComponents(rp); 296 form.signon_realm = url.GetOrigin().spec(); 303 form.ssl_valid = url.SchemeIsSecure() 469 app::win::ScopedCoMem<wchar_t> url; local 556 GURL url = GURL(ResolveInternetShortcut(*it)); local [all...] |