OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testURL
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java
92
URL
testURL
= new URL("http", "www.apache.org:8082", "test.html#anch");
93
assertEquals("Assert 0: wrong protocol", "http",
testURL
.getProtocol());
94
assertEquals("Assert 1: wrong host", "[www.apache.org:8082]",
testURL
.getHost());
95
assertEquals("Assert 2: wrong port", -1,
testURL
.getPort());
96
assertEquals("Assert 3: wrong file", "test.html",
testURL
.getFile());
97
assertEquals("Assert 4: wrong anchor", "anch",
testURL
.getRef());
212
URL
testURL
= new URL("ftp://myname@host.dom/etc/motd");
214
assertEquals("Assert 0: wrong protocol", "ftp",
testURL
.getProtocol());
215
assertEquals("Assert 1: wrong host", "host.dom",
testURL
.getHost());
216
assertEquals("Assert 2: wrong port", -1,
testURL
.getPort())
[
all
...]
/external/webkit/WebKitTools/Scripts/
bisect-builds
76
my $
testURL
;
91
$
testURL
= shift @ARGV;
133
my $tempFile = createTempFile($
testURL
);
/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 33 milliseconds