Searched defs:res (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/test/java/libcore/java/net/
H A DOldURLClassLoaderTest.java103 Enumeration<URL> res = ucl.findResources("test0");
104 assertNotNull("Failed to locate resources", res);
107 while (res.hasMoreElements()) {
108 StringBuffer sb = getResContent(res.nextElement());
206 URL res = ucl.findResource("test1");
207 assertNotNull("Failed to locate resource", res);
209 StringBuffer sb = getResContent(res);
272 private StringBuffer getResContent(URL res) throws IOException { argument
274 InputStream is = res.openStream();
/libcore/luni/src/main/native/
H A DPortability.h82 const struct addrinfo *hints, unsigned /*netid*/, unsigned /*mark*/, struct addrinfo **res) {
83 return getaddrinfo(hostname, servname, hints, res);
81 android_getaddrinfofornet(const char *hostname, const char *servname, const struct addrinfo *hints, unsigned , unsigned , struct addrinfo **res) argument
H A Dlibcore_icu_NativeDecimalFormat.cpp321 Formattable res; local
324 fmt->parse(src.unicodeString(), res, pp);
335 StringPiece str = res.getDecimalNumber(status);
342 double resultDouble = res.getDouble(status);
350 switch (res.getType()) {
351 case Formattable::kDouble: return doubleValueOf(env, res.getDouble());
352 case Formattable::kLong: return longValueOf(env, res.getLong());
353 case Formattable::kInt64: return longValueOf(env, res.getInt64());
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetGetterTests.java47 ResultSet res = null; field in class:OldResultSetGetterTests
222 res = st.executeQuery(queryAllSelect);
223 assertTrue(res.next());
230 res.close();
234 res.close();
245 res.next();
247 assertNull(res.getBytes(i));
252 res.close();
253 res.getBytes(24);
265 ResultSet res
[all...]
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java1135 static int multiplyByInt(int[] res, int[] a, int aSize, int factor) { argument
1140 res[i] = (int) carry;
/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadPoolExecutorSubclassTest.java33 CustomTask(final Runnable r, final V res) { argument
36 public V call() throws Exception { r.run(); return res; }};

Completed in 188 milliseconds