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

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLTest.java 614 URL testURL = new URL("http", "www.apache.org:8080", "test.html#anch");
615 assertEquals("wrong protocol", "http", testURL.getProtocol());
616 assertEquals("wrong host", "[www.apache.org:8080]", testURL.getHost());
617 assertEquals("wrong port", -1, testURL.getPort());
618 assertEquals("wrong file", "test.html", testURL.getFile());
619 assertEquals("wrong anchor", "anch", testURL.getRef());
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
DumpRenderTree.cpp 136 static void initializeGtkFontSettings(const char* testURL)
151 if (testURL && strstr(testURL, "xsettings_antialias_settings.html"))
157 static void initializeFonts(const char* testURL = 0)
160 initializeGtkFontSettings(testURL);
639 string testURL(testPathOrURL);
641 size_t separatorPos = testURL.find("'");
643 testURL = string(testPathOrURL, 0, separatorPos);
649 if (testURL.find("http://") && testURL.find("https://"))
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 69 URL testURL = new URL("http", "www.apache.org:8082", "test.html#anch");
70 assertEquals("Assert 0: wrong protocol", "http", testURL.getProtocol());
71 assertEquals("Assert 1: wrong host", "[www.apache.org:8082]", testURL.getHost());
72 assertEquals("Assert 2: wrong port", -1, testURL.getPort());
73 assertEquals("Assert 3: wrong file", "/test.html", testURL.getFile());
74 assertEquals("Assert 4: wrong anchor", "anch", testURL.getRef());
152 URL testURL = new URL("ftp://myname@host.dom/etc/motd");
154 assertEquals("Assert 0: wrong protocol", "ftp", testURL.getProtocol());
155 assertEquals("Assert 1: wrong host", "host.dom", testURL.getHost());
156 assertEquals("Assert 2: wrong port", -1, testURL.getPort())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 443 if (androidApiURL != null && testURL(androidApiURL)) {
446 if (testURL(paths[CACHE_INDEX_DOCS_URI])) {
448 } else if (testURL(ANDROID_API_REFERENCE)) {
529 private static boolean testURL(String androidApiURL) {
533 URL testURL = new URL(androidApiURL);
534 is = testURL.openStream();
    [all...]
  /external/webkit/Tools/Scripts/
bisect-builds 77 my $testURL;
92 $testURL = shift @ARGV;
134 my $tempFile = createTempFile($testURL);
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 94 public static String testURL = "harmony.apache.org";
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]

Completed in 386 milliseconds