/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
D | URLConnectionTest.java | 77 MockURLConnection u = new MockURLConnection(new URL( in test_addRequestProperty() local 106 MockURLConnection u = new MockURLConnection(new URL( in test_setRequestProperty() local 139 MockURLConnection u = new MockURLConnection(new URL( in test_setUseCachesZ() local 157 MockURLConnection u = new MockURLConnection(new URL( in test_setAllowUserInteractionZ() local 181 protected URLConnection openConnection(URL u) throws IOException { in openConnection()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | JarURLConnectionTest.java | 57 URL u = copyAndOpenResourceStream("lf.jar", "swt.dll"); in test_getAttributes() local 70 URL u = copyAndOpenResourceStream("lf.jar", "plus.bmp"); in test_getEntryName() local 86 URL u = copyAndOpenResourceStream("lf.jar", "plus.bmp"); in test_getJarEntry() local 198 URL u = copyAndOpenResourceStream("lf.jar", "swt.dll"); in test_getMainAttributes() local 231 URL u = copyAndOpenResourceStream("lf.jar", "plus.bmp"); in test_getManifest() local 246 URL u = copyAndOpenResourceStream("lf.jar", "plus.bmp"); in test_getCertificates() local 273 URL u = copyAndOpenResourceStream("lf.jar", ""); in test_getContentLength() local 289 URL u = copyAndOpenResourceStream("lf.jar", ""); in test_getContentType() local
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/file/ |
D | Handler.java | 53 protected void parseURL(URL u, String spec, int start, int limit) { in parseURL() 70 public synchronized URLConnection openConnection(URL u) in openConnection() 75 public synchronized URLConnection openConnection(URL u, Proxy p) in openConnection() 110 protected URLConnection createFileURLConnection(URL u, File file) in createFileURLConnection()
|
/libcore/ojluni/src/main/java/java/net/ |
D | URLStreamHandler.java | 69 abstract protected URLConnection openConnection(URL u) throws IOException; in openConnection() 93 protected URLConnection openConnection(URL u, Proxy p) throws IOException { in openConnection() 122 protected void parseURL(URL u, String spec, int start, int limit) { in parseURL() 410 protected int hashCode(URL u) { in hashCode() 468 protected synchronized InetAddress getHostAddress(URL u) { in getHostAddress() 510 protected String toExternalForm(URL u) { in toExternalForm() 566 protected void setURL(URL u, String protocol, String host, int port, in setURL() 594 protected void setURL(URL u, String protocol, String host, int port, in setURL()
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/ |
D | Handler.java | 50 protected java.net.URLConnection openConnection(URL u) in openConnection() 55 protected java.net.URLConnection openConnection(URL u, Proxy p) in openConnection()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldJarURLConnectionTest.java | 58 URL u = createContent("lf.jar", "swt.dll"); in test_getAttributes() local 75 URL u = createContent("TestCodeSigners.jar", "Test.class"); in test_getCertificates() local 100 URL u = createContent("lf.jar", "swt.dll"); in test_getManifest() local 120 URL u = createContent("lf.jar", "plus.bmp"); in test_getEntryName() local 137 URL u = createContent("lf.jar", "plus.bmp"); in test_getJarEntry() local 253 URL u = createContent("lf.jar", "plus.bmp"); in test_getJarFileURL() local 268 URL u = createContent("lf.jar", "swt.dll"); in test_getMainAttributes() local
|
D | OldURLStreamHandlerTest.java | 188 @Override public InetAddress getHostAddress(URL u) { in getHostAddress() 192 @Override public int hashCode(URL u) { in hashCode() 200 @Override public URLConnection openConnection(URL u, Proxy p) throws IOException { in openConnection() 212 @Override public void setURL(URL u, in setURL() 221 @Override public void setURL(URL u, in setURL() 234 @Override public String toExternalForm(URL u) { in toExternalForm()
|
D | OldURLClassLoaderTest.java | 47 URL[] u = new URL[0]; in test_Constructor$Ljava_net_URL() local 118 URL[] u = new URL[0]; in test_addURLLjava_net_URL() local 165 URL[] u = new URL[0]; in test_definePackage() local
|
/libcore/ojluni/src/main/native/ |
D | Double.c | 46 } u; in Double_longBitsToDouble() local 61 } u; in Double_doubleToRawLongBits() local
|
D | Float.c | 44 } u; in Float_intBitsToFloat() local 58 } u; in Float_floatToRawIntBits() local
|
D | ObjectInputStream.c | 59 } u; in Java_java_io_ObjectInputStream_bytesToFloats() local 127 } u; in Java_java_io_ObjectInputStream_bytesToDoubles() local
|
D | ObjectOutputStream.c | 58 } u; in Java_java_io_ObjectOutputStream_floatsToBytes() local 130 } u; in Java_java_io_ObjectOutputStream_doublesToBytes() local
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/test_protocol/ |
D | Handler.java | 26 protected URLConnection openConnection(URL u) throws IOException { in openConnection()
|
/libcore/ojluni/src/main/java/java/util/function/ |
D | ToDoubleBiFunction.java | 51 double applyAsDouble(T t, U u); in applyAsDouble()
|
D | ToLongBiFunction.java | 51 long applyAsLong(T t, U u); in applyAsLong()
|
D | ToIntBiFunction.java | 51 int applyAsInt(T t, U u); in applyAsInt()
|
D | BiConsumer.java | 53 void accept(T t, U u); in accept()
|
D | BiFunction.java | 53 R apply(T t, U u); in apply()
|
D | BiPredicate.java | 53 boolean test(T t, U u); in test()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | TimeUnit.java | 85 public long convert(long d, TimeUnit u) { return u.toNanos(d); } in convert() 100 public long convert(long d, TimeUnit u) { return u.toMicros(d); } in convert() 115 public long convert(long d, TimeUnit u) { return u.toMillis(d); } in convert() 130 public long convert(long d, TimeUnit u) { return u.toSeconds(d); } in convert() 146 public long convert(long d, TimeUnit u) { return u.toMinutes(d); } in convert() 162 public long convert(long d, TimeUnit u) { return u.toHours(d); } in convert() 178 public long convert(long d, TimeUnit u) { return u.toDays(d); } in convert()
|
/libcore/ojluni/src/main/java/java/util/ |
D | ServiceLoader.java | 243 private static void fail(Class<?> service, URL u, int line, String msg) in fail() 252 private int parseLine(Class<?> service, URL u, BufferedReader r, int lc, in parseLine() 298 private Iterator<String> parse(Class<?> service, URL u) in parse()
|
D | BitSet.java | 716 int u = wordIndex(fromIndex); in nextSetBit() local 748 int u = wordIndex(fromIndex); in nextClearBit() local 794 int u = wordIndex(fromIndex); in previousSetBit() local 832 int u = wordIndex(fromIndex); in previousClearBit() local
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/ |
D | Handler.java | 39 protected java.net.URLConnection openConnection(URL u) in openConnection() 96 protected int hashCode(URL u) { in hashCode()
|
D | JarFileFactory.java | 60 URL u; in getConnection() local
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | NativeThreadSet.java | 88 int u = used; in signalAndWait() local
|