Searched refs:getUrl (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPageInfo.java19 String getUrl(); method in interface:PageInfo
H A DNavigationEntry.java46 public String getUrl() { method in class:NavigationEntry
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DNavigationTest.java74 assertEquals(URL_6, history.getEntryAtIndex(0).getUrl());
75 assertEquals(URL_5, history.getEntryAtIndex(1).getUrl());
76 assertEquals(URL_4, history.getEntryAtIndex(2).getUrl());
88 assertEquals(URL_3, history.getEntryAtIndex(0).getUrl());
89 assertEquals(URL_2, history.getEntryAtIndex(1).getUrl());
90 assertEquals(URL_1, history.getEntryAtIndex(2).getUrl());
94 assertEquals(URL_5, history.getEntryAtIndex(0).getUrl());
95 assertEquals(URL_6, history.getEntryAtIndex(1).getUrl());
96 assertEquals(URL_7, history.getEntryAtIndex(2).getUrl());
H A DContentDetectionTestBase.java57 return UrlUtils.getTestFileUrl(testUrl).equals(getContentView().getUrl());
/external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
H A DContentShellUrlTest.java28 assertEquals(URL, activity.getActiveShell().getContentView().getUrl());
H A DContentShellTestBase.java80 assertEquals(UrlUtils.getTestFileUrl(url), getContentView().getUrl());
139 && !TextUtils.isEmpty(shell.getContentView().getUrl()));
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpResponseCacheTest.java175 URL url = server.getUrl("/");
205 URL url = server.getUrl("/");
270 URL url = server.getUrl("/");
302 HttpURLConnection urlConnection = openConnection(server.getUrl("/"));
312 urlConnection = openConnection(server.getUrl("/")); // cached!
334 HttpsURLConnection connection = (HttpsURLConnection) client.open(server.getUrl("/"));
346 connection = (HttpsURLConnection) client.open(server.getUrl("/")); // cached!
370 HttpsURLConnection connection1 = (HttpsURLConnection) client.open(server.getUrl("/"));
376 HttpsURLConnection connection2 = (HttpsURLConnection) client.open(server.getUrl("/"));
393 HttpURLConnection connection = openConnection(server.getUrl("/"));
[all...]
H A DURLConnectionTest.java132 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
193 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
207 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
237 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
249 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
261 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
273 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
283 URL url = server.getUrl("/foo");
317 HttpURLConnection connection = client.open(server.getUrl("/def"));
329 HttpURLConnection connection = client.open(server.getUrl("/"));
[all...]
/external/mockwebserver/src/test/java/com/google/mockwebserver/
H A DMockWebServerTest.java104 URL url = server.getUrl("/");
121 .addHeader("Location: " + server.getUrl("/new-path"))
125 URLConnection connection = server.getUrl("/").openConnection();
153 URLConnection connection = server.getUrl("/").openConnection();
166 URLConnection connection = server.getUrl("/").openConnection();
184 URLConnection urlConnection = server.getUrl("/").openConnection();
196 URLConnection urlConnection2 = server.getUrl("/").openConnection();
213 server.getUrl("/a").openConnection().getInputStream();
217 server.getUrl("/b").openConnection().getInputStream(); // Should succeed.
225 InputStream in = server.getUrl("/")
[all...]
H A DCustomDispatcherTest.java49 final URL url = mockWebServer.getUrl("/");
89 final URL url = mockWebServer.getUrl(path);
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttpOverSpdyTest.java97 HttpURLConnection connection = client.open(server.getUrl("/foo"));
112 HttpURLConnection connection = client.open(server.getUrl("/foo"));
121 HttpURLConnection connection = client.open(server.getUrl("/foo"));
136 HttpURLConnection connection1 = client.open(server.getUrl("/r1"));
137 HttpURLConnection connection2 = client.open(server.getUrl("/r2"));
150 assertContent("ABCABCABC", client.open(server.getUrl("/r1")), Integer.MAX_VALUE);
161 HttpURLConnection connection = client.open(server.getUrl("/"));
179 HttpURLConnection connection = client.open(server.getUrl("/"));
192 HttpURLConnection connection = client.open(server.getUrl("/"));
205 assertContent("A", client.open(server.getUrl("/")), Intege
[all...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
H A DAsyncApiTest.java45 Request request = new Request.Builder(server.getUrl("/"))
62 Request request = new Request.Builder(server.getUrl("/"))
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwContentsClientVisitedHistoryTest.java44 public String getUrl() { method in class:AwContentsClientVisitedHistoryTest.DoUpdateVisitedHistoryHelper
111 assertEquals(pageUrl, doUpdateVisitedHistoryHelper.getUrl());
118 assertEquals(pageUrl, doUpdateVisitedHistoryHelper.getUrl());
H A DClientOnPageFinishedTest.java44 assertEquals("data:text/html," + html, onPageFinishedHelper.getUrl());
107 assertEquals(syncUrl, onPageFinishedHelper.getUrl());
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/
H A Dbackground.js135 function getUrl(path, line) { function
144 return getUrl(
163 navigate(getUrl(path, line));
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DTestCallbackHelperContainer.java41 public String getUrl() { method in class:TestCallbackHelperContainer.OnPageFinishedHelper
53 public String getUrl() { method in class:TestCallbackHelperContainer.OnPageStartedHelper
H A DHistoryUtils.java101 * Calls {@link ContentView#getUrl()} on UI Thread to get the current URL.
114 return contentViewCore.getUrl();
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/
H A Dribbon.js110 var removed = this.renderCache_[event.removed[0].getUrl()];
251 this.renderCache_[this.dataModel_.item(selectedIndex).getUrl()];
294 var url = item.getUrl();
346 var url = event.item.getUrl();
H A Dgallery_item.js21 Gallery.Item.prototype.getUrl = function() { return this.url_ };
194 webkitResolveLocalFileSystemURL(this.getUrl(),
230 webkitResolveLocalFileSystemURL(this.getUrl(),
/external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
H A DShell.java128 mUrlTextView.setText(mContentView.getUrl());
143 if (TextUtils.equals(url, mContentView.getUrl())) {
220 if (mContentView.getUrl() != null) mUrlTextView.setText(mContentView.getUrl());
/external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
H A DTestShellToolbar.java62 mUrlTextView.setText(mTab.getContentView().getUrl());
109 mUrlTextView.setText(mTab.getContentView().getUrl());
H A DTestShellTab.java130 if (TextUtils.equals(url, mContentView.getUrl())) {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DNavigationPopup.java117 String url = entry.getUrl();
130 if (TextUtils.equals(url, entry.getUrl())) entry.updateFavicon((Bitmap) favicon);
232 if (TextUtils.isEmpty(entryText)) entryText = entry.getUrl();
/external/chromium_org/chrome/android/testshell/javatests/src/org/chromium/chrome/testshell/
H A DChromiumTestShellTestBase.java76 && !TextUtils.isEmpty(tab.getContentView().getUrl()));
H A DChromiumTestShellUrlTest.java69 url.set(contentViewCore.get().getUrl());

Completed in 333 milliseconds

123