Searched refs:URL (Results 51 - 75 of 542) sorted by relevance

1234567891011>>

/external/chromium_org/tools/measure_page_load_time/ff_ext/content/
H A Dmeasure_page_load_time.js28 * Incoming URL buffer
34 * URL we're currently visiting
37 URL : '',
104 // Remove the URL from the buffer
105 MPLT.URL = MPLT.textBuffer.substr(0, firstCR);
108 // Remember the current time and navigate to the new URL
110 gBrowser.loadURIWithFlags(MPLT.URL, gBrowser.LOAD_FLAGS_BYPASS_CACHE);
144 * @param {string} result The value to send along with the URL
148 if (MPLT.URL) {
149 var outputString = MPLT.URL
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DURLEncodingTest.java27 import java.net.URL;
38 * Exercises HttpURLConnection to convert URL to a URI. Unlike URL#toURI,
109 backdoorUrlToUri(new URL("http://host" + string + ".tld/")).toString());
113 backdoorUrlToUri(new URL("http://host.tld/file" + string + "/")).toString());
117 backdoorUrlToUri(new URL("http://host.tld/file?q" + string + "=x")).toString());
120 backdoorUrlToUri(new URL("http://host.tld/file#" + asFragment + "-x")).toString());
123 private URI backdoorUrlToUri(URL url) throws Exception {
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_database_unittest.cc32 GURL URL(const GURL& origin, const std::string& path) { function in namespace:content::__anon7401
165 data1.scope = URL(origin, "/foo");
166 data1.script = URL(origin, "/script1.js");
208 data2.scope = URL(origin, "/bar");
209 data2.script = URL(origin, "/script2.js");
247 data1.scope = URL(origin1, "/foo");
248 data1.script = URL(origin1, "/script1.js");
258 data2.scope = URL(origin2, "/bar");
259 data2.script = URL(origin2, "/script2.js");
269 data3.scope = URL(origin
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DHttpsURLConnection_ImplTest.java21 import java.net.URL;
57 public MyHttpsURLConnection(URL url) {
/external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
H A Dpopup.js6 var URL = 'http://api.stackoverflow.com/1.1/questions?max=10&sort=votes&tagged=google-chrome-extension'; variable
26 xhr.open('GET', URL);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
H A DTestInterfaceNode.idl37 [Reflect, URL] attribute DOMString reflectUrlStringAttribute;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSourceElement.idl29 [Reflect, URL] attribute DOMString src;
H A DHTMLAppletElement.idl28 [Reflect, URL] attribute DOMString codeBase;
32 [Reflect, URL] attribute DOMString _object; // "object" is a reserved word
H A DHTMLIFrameElement.idl26 [Reflect, URL] attribute DOMString longDesc;
32 [Reflect, URL] attribute DOMString src;
/external/javassist/src/main/javassist/
H A DLoaderClassPath.java19 import java.net.URL;
74 * Obtains the URL of the specified class file.
80 public URL find(String classname) {
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DShutdownTest.java12 import java.net.URL;
31 HttpURLConnection connection = (HttpURLConnection) new URL("http://localhost:8092/").openConnection();
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DTunnelRequest.java19 import java.net.URL;
64 .url(new URL("https", host, port, "/"));
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dremote_to_local_syncer_unittest.cc40 storage::FileSystemURL URL(const GURL& origin, const std::string& path) { function in namespace:sync_file_system::drive_backend::__anon4865
269 // TODO(nhiroki): Clean up creating URL part.
270 AppendExpectedChange(URL(kOrigin, "folder1"),
273 AppendExpectedChange(URL(kOrigin, "file1"),
276 AppendExpectedChange(URL(kOrigin, "folder1/folder2"),
279 AppendExpectedChange(URL(kOrigin, "folder1/file2"),
298 AppendExpectedChange(URL(kOrigin, "folder"),
301 AppendExpectedChange(URL(kOrigin, "file"),
311 AppendExpectedChange(URL(kOrigin, "folder"),
314 AppendExpectedChange(URL(kOrigi
[all...]
/external/chromium_org/athena/content/shell/
H A Dscheme_classifier_factory.cc24 return metrics::OmniboxInputType::URL;
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dnanoftp.h70 xmlNanoFTPNewCtxt (const char *URL);
80 xmlNanoFTPOpen (const char *URL);
88 xmlNanoFTPScanProxy (const char *URL);
97 const char *URL);
/external/guava/guava-tests/test/com/google/common/base/
H A DFinalizableReferenceQueueTest.java25 import java.net.URL;
127 URLClassLoader newLoader(URL base) {
128 return new DecoupledClassLoader(new URL[] { base });
142 public DecoupledClassLoader(URL[] urls) {
/external/libxml2/include/libxml/
H A Dnanoftp.h90 xmlNanoFTPNewCtxt (const char *URL);
100 xmlNanoFTPOpen (const char *URL);
108 xmlNanoFTPScanProxy (const char *URL);
117 const char *URL);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DOkHttp.java22 import java.net.URL;
52 @Override public Runnable request(URL url) {
57 private final URL url;
59 public OkHttpRequest(URL url) {
H A DUrlConnection.java23 import java.net.URL;
49 @Override public Runnable request(URL url) {
54 private final URL url;
56 public UrlConnectionRequest(URL url) {
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureNodeFields.java16 import java.net.URL;
37 * The URL of an XSL transformation which can be applied to
41 * <p><b>Value: {@link URL}</b></p>
53 * The URL of an XSL transformation which can be applied to
58 * <p><b>Value: {@link URL}</b></p>
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
H A DTestHttpServerClient.java14 import java.net.URL;
27 * Construct a suitable URL for loading a test data file from the hosts' HTTP server.
37 * Construct a URL for loading a test data file with HTTP authentication fields.
47 * Establishes a connection with the test server at default URL and verifies that it is running.
54 * Establishes a connection with the test server at a given URL and verifies that it is running
60 URL testUrl = new URL(serverUrl);
64 Assert.assertNotSame("Failed to access test HTTP Server at URL: " + serverUrl,
66 Assert.assertEquals("Failed to access test HTTP Server at URL: " + serverUrl,
70 "Failed to check test HTTP server at URL
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dsecurity.c360 * @URL: the resource to be written
369 xsltTransformContextPtr ctxt, const xmlChar *URL) {
374 uri = xmlParseURI((const char *)URL);
379 "xsltCheckWrite: out of memory for %s\n", URL);
382 uri->path = (char *)xmlStrdup(URL);
408 ret = check(sec, ctxt, (const char *)URL);
411 "File write for %s refused\n", URL);
426 * @URL: the resource to be read
434 xsltTransformContextPtr ctxt, const xmlChar *URL) {
439 uri = xmlParseURI((const char *)URL);
368 xsltCheckWrite(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
433 xsltCheckRead(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
[all...]
/external/chromium_org/tools/
H A Domahaproxy.py19 URL = 'https://omahaproxy.appspot.com/json' variable
24 data = json.load(urllib.urlopen(URL))
26 print 'Error: could not load %s\n\n%s' % (URL, str(e))
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DHtmlUtils.java54 * <li>{@code NONE} if it does not contain a URL in the expected format.
55 * <li>{@code URL_START} if it contains a URL but hasn't seen any of
57 * <li>{@code URL} if it contains a URL and has seen at least some of
64 URL enum constant in enum:HtmlUtils.META_REDIRECT_TYPE
69 * that contains a URL. Used by {@link #parseContentAttributeForUrl}.
72 "^\\s*\\d*\\s*;\\s*URL\\s*=\\s*[\'\"]?";
354 * Parses the given {@code String} to determine if it contains a URL in the
363 * a URL.
369 * value contains a URL an
[all...]
/external/okhttp/android/main/java/com/squareup/okhttp/
H A DHttpHandler.java23 import java.net.URL;
32 @Override protected URLConnection openConnection(URL url) throws IOException {
36 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {

Completed in 680 milliseconds

1234567891011>>