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

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcherTest.cpp 49 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.jpg");
54 RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(0, ResourceRequest(testURL), SubstituteData());
62 FetchRequest fetchRequest = FetchRequest(ResourceRequest(testURL), FetchInitiatorInfo());
65 EXPECT_EQ(memoryCache()->resourceForURL(testURL), static_cast<Resource*>(0));
ImageResourceTest.cpp 99 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
105 blink::Platform::current()->unitTestSupport()->registerMockedURL(testURL, response, localPath);
109 RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(&dummyPageHolder->frame(), ResourceRequest(testURL), SubstituteData());
112 ResourcePtr<ImageResource> cachedImage = new ImageResource(ResourceRequest(testURL));
125 EXPECT_NE(reinterpret_cast<Resource*>(0), memoryCache()->resourceForURL(testURL));
130 EXPECT_EQ(reinterpret_cast<Resource*>(0), memoryCache()->resourceForURL(testURL));
132 blink::Platform::current()->unitTestSupport()->unregisterMockedURL(testURL);
  /external/chromium_org/content/shell/renderer/test_runner/
WebTestInterfaces.cpp 52 void WebTestInterfaces::configureForTestWithURL(const WebURL& testURL, bool generatePixels)
54 m_interfaces->configureForTestWithURL(testURL, generatePixels);
TestInterfaces.cpp 113 void TestInterfaces::configureForTestWithURL(const WebURL& testURL, bool generatePixels)
115 string spec = GURL(testURL).spec();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URLTest.java 608 URL testURL = new URL("http", "www.apache.org:8080", "test.html#anch");
609 assertEquals("wrong protocol", "http", testURL.getProtocol());
610 assertEquals("wrong host", "[www.apache.org:8080]", testURL.getHost());
611 assertEquals("wrong port", -1, testURL.getPort());
612 assertEquals("wrong file", "/test.html", testURL.getFile());
613 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 454 if (androidApiURL != null && testURL(androidApiURL)) {
457 if (testURL(paths[CACHE_INDEX_DOCS_URI])) {
459 } else if (testURL(ANDROID_API_REFERENCE)) {
541 * Cache results for testURL: Some are expensive to compute, and this is
548 private static boolean testURL(String androidApiURL) {
556 URL testURL = new URL(androidApiURL);
557 URLConnection connection = testURL.openConnection();
    [all...]
  /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 922 milliseconds