/libcore/luni/src/main/java/libcore/net/url/ |
FileHandler.java | 18 package libcore.net.url; 22 import java.net.URL; 33 * Returns a connection to the a file pointed by this <code>URL</code> in 36 * @return A connection to the resource pointed by this url. 37 * @param url 38 * URL The URL to which the connection is pointing to 42 public URLConnection openConnection(URL url) throws IOException { 43 return openConnection(url, null) [all...] |
FtpURLInputStream.java | 18 package libcore.net.url;
|
UrlUtils.java | 17 package libcore.net.url; 97 * Returns the scheme prefix like "http" from the URL spec, or null if the
|
/packages/apps/Browser/tests/src/com/android/browser/tests/ |
BookmarksTests.java | 46 String url = "http://google.com/search?q=test"; local 47 c = Bookmarks.queryCombinedForUrl(cr, null, url); 50 assertEquals(url, c.getString(0)); 54 url = "http://google.com/search"; 55 c = Bookmarks.queryCombinedForUrl(cr, null, url);
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
SetURL.java | 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT); local 39 if (url == null) { 42 set(url); 47 protected void set(String url) { 50 editor.putString("url", url); 54 Toast.makeText(this, "WebView dream URL set to: " + url, Toast.LENGTH_SHORT).show();
|
SetURLInteractive.java | 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT); local 39 if (url == null) { 42 set(url); 47 protected void set(String url) { 50 editor.putString("url", url); 54 Toast.makeText(this, "WebView dream URL set to: " + url, Toast.LENGTH_SHORT).show();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
NetworkRequest.js | 36 * @param {string} url 41 WebInspector.NetworkRequest = function(requestId, url, documentURL, frameId, loaderId) 44 this.url = url; 99 get url() 104 set url(x) 386 this._name = this._parsedURL.url; 636 var url = this.url; 637 var questionMarkPosition = url.indexOf("?") 881 var url = ""; variable [all...] |
/external/oauth/core/src/main/java/net/oauth/client/ |
URLConnectionClient.java | 23 import java.net.URL; 49 final URL url = request.url; local 50 final URLConnection connection = url.openConnection(); 59 headers.append(" ").append(url.getPath()); 60 String query = url.getQuery();
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestBasic.java | 66 Editable url = urlEdit.getText(); local 67 if (url.length() < 1) { 71 String urlString = url.toString(); 84 url.setSpan(new ForegroundColorSpan(0xfff00fff), 90 url.setSpan(new ForegroundColorSpan(0xff548aff), 96 url.setSpan(new ForegroundColorSpan(0xfff00fff),
|
/development/tools/emulator/test-apps/ConnectivityTest/src/com/android/emulator/connectivity/test/ |
ConnectivityTest.java | 20 import java.net.URL; 60 URL url = new URL(URL_NAME); local 62 URLConnection connection = url.openConnection();
|
/external/apache-harmony/security/src/test/api/java.injected/java/security/ |
SecureClassLoaderTest.java | 24 import java.net.URL; 173 URL[] urls = new URL[] { new URL("http://localhost") }; 182 URL url = new URL("http://localhost"); local 183 CodeSource cs = new CodeSource(url, (Certificate[]) null);
|
/external/chromium/chrome/browser/chromeos/login/ |
html_page_screen.cc | 42 const std::string& url) 43 : ViewScreen<HTMLPageView>(delegate), url_(url) { 56 GURL url(url_); 59 SiteInstance::CreateSiteInstanceForURL(profile, url)); 61 view()->LoadURL(url); 71 std::string url = source->GetURL().spec(); local 72 if (url == kHTMLPageDoneUrl) { 76 VLOG(1) << "HTMLPageScreen::LoadingStateChanged: " << url; 107 void HTMLPageScreen::OnPageLoadFailed(const std::string& url) { 108 VLOG(1) << "HTMLPageScreen::OnPageLoadFailed: " << url; [all...] |
/external/chromium/chrome/browser/ |
content_setting_bubble_model_unittest.cc | 109 GURL url = contents()->GetURL(); local 110 map->AddExceptionForURL(url, 114 map->AddExceptionForURL(url, 137 map->GetContentSetting(url, 141 map->GetContentSetting(url, 148 map->GetContentSetting(url, 152 map->GetContentSetting(url,
|
/external/chromium/chrome/browser/download/ |
save_types.h | 37 const GURL& url, 48 // Original URL of the saved resource. 49 GURL url; member in struct:SaveFileCreateInfo 50 // Final URL of the saved resource since some URL might be redirected.
|
/external/chromium/chrome/browser/extensions/ |
extension_function_dispatcher.h | 45 // chrome-extension://<id> URL are being shown. Callers must check for a 78 // Creates an instance for the specified RenderViewHost and URL. If the URL 82 const GURL& url); 106 // Gets the URL for the view we're displaying. 107 const GURL& url() { return url_; } function in class:ExtensionFunctionDispatcher 122 const GURL& url);
|
extension_webnavigation_api.h | 36 // Starts to track a frame given by its |frame_id| showing the URL |url| in 39 const GURL& url, 44 // Returns the URL corresponding to a tracked frame given by its |frame_id|. 67 GURL url; // URL of this frame. member in struct:FrameNavigationState::FrameState 97 const GURL& url, 106 virtual void DidOpenURL(const GURL& url, 113 // True if the transition and target url correspond to a reference fragment 115 bool IsReferenceFragmentNavigation(int64 frame_id, const GURL& url); [all...] |
extensions_ui.h | 35 ExtensionPage(const GURL& url, int render_process_id, int render_view_id, 37 : url(url), render_process_id(render_process_id), 39 GURL url; member in struct:ExtensionPage
|
/external/chromium/chrome/browser/history/ |
text_database.h | 34 // URL of the match. 35 GURL url; member in struct:history::TextDatabase::Match 37 // The title is returned because the title in the text database and the URL 106 const std::string& url, 110 // Deletes the indexed data exactly matching the given URL/time pair. 111 void DeletePageData(base::Time time, const std::string& url); 129 // Any URLs found will be added to |unique_urls|. If a URL is already in the 131 // URL results).
|
visit_tracker_unittest.cc | 20 const char* url; member in struct:__anon4655::VisitToTest 51 tracker->AddVisit(host, test[i].page_id, GURL(test[i].url),
|
/external/chromium/chrome/browser/net/ |
url_request_mock_net_error_job.cc | 37 void URLRequestMockNetErrorJob::AddMockedURL(const GURL& url, 42 URLMockInfoMap::const_iterator iter = url_mock_info_map_.find(url); 46 url_mock_info_map_[url] = MockInfo(base, errors, ssl_cert); 48 ->AddUrlHandler(url, &URLRequestMockNetErrorJob::Factory); 52 void URLRequestMockNetErrorJob::RemoveMockedURL(const GURL& url) { 53 URLMockInfoMap::iterator iter = url_mock_info_map_.find(url); 56 net::URLRequestFilter::GetInstance()->RemoveUrlHandler(url); 63 GURL url = request->url(); local 65 URLMockInfoMap::const_iterator iter = url_mock_info_map_.find(url); [all...] |
/external/chromium/chrome/browser/tab_contents/ |
web_drop_target_win.cc | 68 std::wstring url; local 70 ui::ClipboardUtil::GetUrl(data_object, &url, &title, true); 71 tab_contents_->OpenURL(GURL(url), GURL(), CURRENT_TAB, 112 if (drop_data.url.is_empty()) 113 ui::OSExchangeDataProviderWin::GetPlainTextURL(data_object, &drop_data.url);
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab_renderer_data.h | 44 GURL url; member in struct:TabRendererData
|
/external/chromium/chrome/common/extensions/ |
extension_file_util_unittest.cc | 199 const char* url; member in struct:TestCase 225 GURL url(test_cases[i].url); 233 extension_file_util::ExtensionURLToRelativeFilePath(url); 237 " For the path " << url;
|
/external/chromium/net/http/ |
http_request_info.h | 24 EARLY_LOAD_MOTIVATED, // When browser asks a tab to open an URL, this short 26 // do the URL request), and starts loading ASAP. 32 // The requested URL. 33 GURL url; member in struct:net::HttpRequestInfo 35 // The referring URL (if any).
|
/external/chromium/net/url_request/ |
url_request_filter.cc | 42 const GURL& url = GURL(i->first); local 44 hostname_handler_map_.find(make_pair(url.scheme(), url.host())); 65 const GURL& url, 67 if (!url.is_valid()) 69 url_handler_map_[url.spec()] = factory; 72 URLRequest::RegisterProtocolFactory(url.scheme(), 75 // Check to see if this URL is masked by a hostname handler. 77 hostname_handler_map_.find(make_pair(url.scheme(), url.host())) 134 const std::string& url = request->url().spec(); local [all...] |