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

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWebView.java 49 public void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) {
50 lastLoadDataWithBaseURL = new LoadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);
223 public final String historyUrl;
225 public LoadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) {
230 this.historyUrl = historyUrl;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LoadUrlParams.java 123 * baseUrl and historyUrl are ignored if this is a data: url.
125 * @param historyUrl History url for this data load. Note that for WebView compatibility,
131 String baseUrl, String historyUrl) {
133 baseUrl, historyUrl, null);
143 * baseUrl and historyUrl are ignored if this is a data: url.
145 * @param historyUrl History url for this data load. Note that for WebView compatibility,
153 String baseUrl, String historyUrl, String charset) {
157 // baseUrl and historyUrl.
158 // TODO(joth): we should just append baseURL and historyURL here, and move the
162 params.setVirtualUrlForDataUrl(historyUrl != null ? historyUrl : "about:blank")
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
LoadDataWithBaseUrlTest.java 46 final String baseUrl, final String historyUrl) throws Throwable {
48 data, mimeType, isBase64Encoded, baseUrl, historyUrl);
202 final String historyUrl = "http://history.com/";
203 loadDataWithBaseUrlSync(pageHtml, "text/html", false, baseUrl, historyUrl);
204 assertEquals(historyUrl, HistoryUtils.getUrlOnUiThread(
228 final String historyUrl = "http://history.com/";
229 loadDataWithBaseUrlSync(pageHtml, "text/html", false, "data:foo", historyUrl);
244 final String historyUrl = webServer.setResponse("/" + CommonResources.ABOUT_FILENAME,
251 loadDataWithBaseUrlSync(page1Html, "text/html", false, null, historyUrl);
264 // The title of the 'about.html' specified via historyUrl
    [all...]
AwTestBase.java 234 final String historyUrl) throws Throwable {
236 loadDataWithBaseUrlAsync(awContents, data, mimeType, isBase64Encoded, baseUrl, historyUrl);
243 final String baseUrl, final String historyUrl) throws Throwable {
248 data, mimeType, isBase64Encoded, baseUrl, historyUrl));
ClientOnPageFinishedTest.java 213 final String historyUrl = webServer.getResponseUrl(historyPath);
220 "history.pushState(null, null, '" + historyUrl + "');");
  /external/chromium_org/content/browser/frame_host/
navigation_controller_impl_browsertest.cc 20 const GURL history_url("http://historyurl");
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_provider.h 43 // HistoryURL (good exact or inline autocomplete matches, some inexact)| 1410++
44 // HistoryURL (intranet url never visited match, some inexact matches) | 1400++
47 // HistoryURL (what you typed, some inexact matches) | 1200++
51 // HistoryURL (some inexact matches) | 900++
66 // HistoryURL (good exact or inline autocomplete matches, some inexact)| 1410++
67 // HistoryURL (intranet url never visited match, some inexact matches) | 1400++
68 // HistoryURL (what you typed, some inexact matches) | 1200++
71 // HistoryURL (some inexact matches) | 900++
93 // HistoryURL (inexact match) | 900++
history_quick_provider.cc 103 // Figure out if HistoryURL provider has a URL-what-you-typed match
112 // inputs because these are likely to be an e-mail address. HistoryURL
autocomplete_provider.cc 47 return "HistoryURL";
autocomplete_match.h 259 // set for matches from HistoryURL and HistoryQuickProvider.
history_url_provider.h 337 // If true, HistoryURL provider should lookup and cull redirects. If
history_url_provider.cc 670 // If HistoryURL retrieves any matches (and hence we reach this code), we
    [all...]
  /external/chromium_org/chrome/browser/omnibox/
omnibox_field_trial.h 126 // For the HistoryURL provider disable culling redirects field trial.
133 // HistoryURL provider.
137 // For the HistoryURL provider disable creating a shorter match
145 // HistoryURL provider.
230 // For the HistoryURL provider new scoring experiment that is part of the
302 // Returns true if HistoryURL Provider should add the URL-what-you-typed match
304 // autocompletions to offer. Normally HistoryURL does not add the UWYT match
omnibox_field_trial.cc 57 // For HistoryURL provider cull redirects field trial, put 0% ( = 0/100 )
65 // For HistoryURL provider create shorter match field trial, put 0%
83 // Field trial ID for the HistoryURL provider cull redirects experiment group.
86 // Field trial ID for the HistoryURL provider create shorter match
161 // Create the HistoryURL provider cull redirects field trial.
171 // Create the HistoryURL provider create shorter match field trial.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
WebViewTest.java 56 assertThat(lastLoadData.historyUrl, equalTo("history/url"));
  /external/chromium_org/chrome/browser/history/
scored_history_match.h 191 // a score that's similar to the score HistoryURL provider would assign).
scored_history_match.cc 162 // HistoryURL-provider-like scoring gives any match that is
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebViewChromium.java 643 String historyUrl) {
648 historyUrl = fixupHistory(historyUrl);
655 data, mimeType, isBase64, baseUrl, historyUrl, isBase64 ? null : encoding);
664 true, baseUrl, historyUrl, "utf-8");
    [all...]
  /external/chromium_org/components/metrics/proto/
omnibox_event.proto 216 // writing this comment, it is only set for HistoryURL and
  /cts/libs/deviceutillegacy/src/android/webkit/cts/
WebViewOnUiThread.java 470 final String historyUrl) {
475 historyUrl);
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 201 final String historyUrl = "www.history.com";
215 value.put(BookmarkColumns.URL, historyUrl);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 117 String mimeType, String encoding, String historyUrl);
WebView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp     [all...]

Completed in 1193 milliseconds