HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 151 - 175 of 1013) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
WebContentsObserverAndroidTest.java 22 private static final String URL = UrlUtils.encodeHtmlDataUri(
71 .loadUrl(new LoadUrlParams(URL));
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
resolve_host.js 5 // This script passes the URL's host to dnsResolveEx().
6 function FindProxyForURL(url, host) {
  /external/chromium_org/remoting/webapp/
third_party_token_fetcher.js 13 * server will redirect the browser to a URL containing the token and shared
30 * @param {string} tokenUrl Token-issue URL received from the host.
33 * @param {Array.<string>} tokenUrlPatterns Token URL patterns allowed for the
63 // If there is no list of patterns, this host cannot use a token URL.
69 // Verify the host-supplied URL matches the domain's allowed URL patterns.
80 // If the URL doesn't match any pattern in the list, refuse to access it.
81 console.error('Token URL does not match the domain\'s allowed URL patterns.' +
82 ' URL: ' + this.tokenUrl_ + ', patterns: ' + this.tokenUrlPatterns_)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLButtonElement.idl 25 [Reflect, URL] attribute DOMString formAction;
HTMLEmbedElement.idl 27 [Reflect, URL] attribute DOMString src;
HTMLLinkElement.idl 25 [Reflect, URL] attribute DOMString href;
HTMLScriptElement.idl 27 [Reflect, URL] attribute DOMString src;
HTMLTrackElement.idl 28 [Reflect, URL] attribute DOMString src;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.idl 35 Constructor(DOMString url, optional EventSourceInit eventSourceInit),
41 [DeprecateAs=EventSourceURL] readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
42 readonly attribute DOMString url;
  /external/chromium_org/third_party/lcov/rpm/
lcov.spec 7 URL: http://ltp.sourceforge.net/coverage/lcov.php
  /external/chromium_org/third_party/libxslt/libxslt/
security.h 4 * the access to new resources (file or URL) from
49 * path or an URL ...
93 const xmlChar *URL);
97 const xmlChar *URL);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpsURLConnectionImpl.java 21 import java.net.URL;
28 public HttpsURLConnectionImpl(URL url, OkHttpClient client) {
29 this(new HttpURLConnectionImpl(url, client));
RequestLine.java 5 import java.net.URL;
22 result.append(request.url());
24 result.append(requestPath(request.url()));
33 * Returns true if the request line should contain the full URL with host
43 * even if the request URL is. Includes the query component if it exists.
45 public static String requestPath(URL url) {
46 String pathAndQuery = url.getFile();
  /external/okhttp/samples/simple-client/src/main/java/com/squareup/okhttp/sample/
OkHttpContributors.java 9 import java.net.URL;
30 HttpURLConnection connection = client.open(new URL(ENDPOINT));
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 23 import java.net.URL;
304 * it as a {@code java.net.URL} object.
306 * @return the next attribute as a {@code java.net.URL}. {@code null} if the
310 * @see java.net.URL
312 public URL readURL() throws SQLException;
SQLOutput.java 23 import java.net.URL;
284 * Write a {@code URL} into the output stream as an SQL DATALINK.
287 * the datalink value as a {@code java.net.URL} to write.
290 * @see java.net.URL
292 public void writeURL(URL theURL) throws SQLException;
  /libcore/luni/src/test/java/libcore/java/net/
OldAuthenticatorTest.java 22 import java.net.URL;
56 public URL getRequestingURL() {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 32 import java.net.URL;
172 new URL("http://localhost:" + httpServer.port()).openConnection();
191 URL url = new URL("http://localhost:" + server.port()); local
193 HttpURLConnection connection = (HttpURLConnection) url
218 HttpURLConnection huc = (HttpURLConnection)url.openConnection(Proxy.NO_PROXY);
231 URL url = new URL("http://localhost:" + server.port()) local
285 URL url = new URL("http:\/\/remotehost:55555\/requested.data"); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 22 import java.net.URL;
34 URLConnection conn = new URL("http://www.apache.org").openConnection();
URLConnectionTest.java 48 import java.net.URL;
68 private URL fileURL;
81 MockURLConnection u = new MockURLConnection(new URL(
110 MockURLConnection u = new MockURLConnection(new URL(
143 MockURLConnection u = new MockURLConnection(new URL(
161 MockURLConnection u = new MockURLConnection(new URL(
174 public MockURLConnection(URL url) {
175 super(url);
185 protected URLConnection openConnection(URL u) throws IOException
    [all...]
  /external/chromium_org/components/omnibox/
autocomplete_input.cc 14 #include "url/url_canon_ip.h"
15 #include "url/url_util.h"
80 (type_ == metrics::OmniboxInputType::URL)) &&
123 return "deprecated-requested-url";
124 case metrics::OmniboxInputType::URL: return "url";
136 url::Parsed* parts,
153 url::Parsed local_parts;
162 // system isn't going to be able to produce a navigable URL match for it.
172 if (LowerCaseEqualsASCII(parsed_scheme_utf8, url::kFileScheme))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 27 import java.net.URL;
52 URL url = null; local
58 url = new URL("file:/" + resPath + "/" + fileName);
62 return url.toString();
118 public static File getExternalLocalFile(String url) throws IOException, MalformedURLException {
120 InputStream in = new URL(url).openStream();
151 URL url = ClassLoader.getSystemClassLoader().getResource(name) local
    [all...]
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 22 import java.net.URL;
75 private final Set<URL> services;
85 this.services = new HashSet<URL>();
188 private final Set<URL> services;
221 for (URL url : services) {
224 reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8"));
245 throw new ServiceConfigurationError("Couldn't read " + url, e);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 33 import java.net.URL;
118 List<URL> urls = new ArrayList<URL>();
129 URL url; local
131 url = pathFile.toURI().toURL();
132 urls.add(url);
137 "Invalid URL: %1$s", //$NON-NLS-1$
144 return new URLClassLoader(urls.toArray(new URL[urls.size()]),
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
local_to_remote_syncer_unittest.cc 43 storage::FileSystemURL URL(const GURL& origin, const std::string& path) {
167 const storage::FileSystemURL& url) {
173 file_change, local_path, url));
278 URL(kOrigin, "file1")));
282 URL(kOrigin, "folder")));
286 URL(kOrigin, "folder/file2")));
310 URL(kOrigin, "folder1/folder2/file")));
314 URL(kOrigin, "folder1/folder2/file")));
318 URL(kOrigin, "folder1/folder2/file")));
343 URL(kOrigin, "file")))
    [all...]

Completed in 549 milliseconds

1 2 3 4 5 67 8 91011>>