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

  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceFetcherTest.cpp 49 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.jpg");
54 RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(ResourceRequest(testURL), SubstituteData());
62 FetchRequest fetchRequest = FetchRequest(ResourceRequest(testURL), FetchInitiatorInfo());
65 EXPECT_EQ(memoryCache()->resourceForURL(testURL), static_cast<Resource*>(0));
ImageResourceTest.cpp 115 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
122 WebKit::Platform::current()->unitTestSupport()->registerMockedURL(testURL, response, localPath);
132 RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(ResourceRequest(testURL), SubstituteData());
136 ResourcePtr<ImageResource> cachedImage = new ImageResource(ResourceRequest(testURL));
147 EXPECT_NE(reinterpret_cast<Resource*>(0), memoryCache()->resourceForURL(testURL));
152 EXPECT_EQ(reinterpret_cast<Resource*>(0), memoryCache()->resourceForURL(testURL));
154 WebKit::Platform::current()->unitTestSupport()->unregisterMockedURL(testURL);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestInterfaces.cpp 79 void WebTestInterfaces::configureForTestWithURL(const WebURL& testURL, bool generatePixels)
81 m_interfaces->configureForTestWithURL(testURL, generatePixels);
TestInterfaces.cpp 137 void TestInterfaces::configureForTestWithURL(const WebURL& testURL, bool generatePixels)
139 string spec = GURL(testURL).spec();
  /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...]
  /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 447 if (androidApiURL != null && testURL(androidApiURL)) {
450 if (testURL(paths[CACHE_INDEX_DOCS_URI])) {
452 } else if (testURL(ANDROID_API_REFERENCE)) {
534 * Cache results for testURL: Some are expensive to compute, and this is
541 private static boolean testURL(String androidApiURL) {
549 URL testURL = new URL(androidApiURL);
550 URLConnection connection = testURL.openConnection();
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
bisect-builds 81 my $testURL;
96 $testURL = shift @ARGV;
138 my $tempFile = createTempFile($testURL);
  /external/chromium_org/third_party/mozilla/
NSString+Utils.mm 94 GURL testURL([self UTF8String]);
98 if ((testURL.is_valid()) || [self isLooselyValidatedURI]) {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp     [all...]

Completed in 193 milliseconds