HomeSort by relevance Sort by last modified time
    Searched refs:testURL (Results 1 - 6 of 6) sorted by null

  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLTest.java 124 URL testURL = new URL("http", "www.apache.org:8082", "test.html#anch");
125 assertEquals("Assert 0: wrong protocol", "http", testURL.getProtocol());
126 assertEquals("Assert 1: wrong host", "[www.apache.org:8082]", testURL.getHost());
127 assertEquals("Assert 2: wrong port", -1, testURL.getPort());
128 assertEquals("Assert 3: wrong file", "test.html", testURL.getFile());
129 assertEquals("Assert 4: wrong anchor", "anch", testURL.getRef());
244 URL testURL = new URL("ftp://myname@host.dom/etc/motd");
246 assertEquals("Assert 0: wrong protocol", "ftp", testURL.getProtocol());
247 assertEquals("Assert 1: wrong host", "host.dom", testURL.getHost());
248 assertEquals("Assert 2: wrong port", -1, testURL.getPort())
    [all...]
HttpURLConnectionTest.java 134 url = new URL("http://" + Support_Configuration.testURL);
962 URL url1 = new URL("http://" + Support_Configuration.testURL);
    [all...]
  /external/webkit/WebKitTools/Scripts/
bisect-builds 76 my $testURL;
91 $testURL = shift @ARGV;
133 my $tempFile = createTempFile($testURL);
  /dalvik/libcore/support/src/test/java/tests/support/
Support_Configuration.java 104 public static String testURL = "harmony.apache.org";
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 458 const string testURL(url);
462 gLayoutTestController = new LayoutTestController(testURL, expectedPixelHash);

Completed in 298 milliseconds