Home
last modified time | relevance | path

Searched defs:ret (Results 1 – 25 of 43) sorted by relevance

12

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java32 Object ret = null; in test_getLjava_lang_ObjectI() local
192 char ret = 0; in test_getCharLjava_lang_ObjectI() local
238 double ret = 0; in test_getDoubleLjava_lang_ObjectI() local
285 float ret = 0; in test_getFloatLjava_lang_ObjectI() local
331 int ret = 0; in test_getIntLjava_lang_ObjectI() local
397 long ret = 0; in test_getLongLjava_lang_ObjectI() local
443 short ret = 0; in test_getShortLjava_lang_ObjectI() local
DInvocationTargetExceptionTest.java137 Object ret = mth.invoke(new TestMethod(), new Object[0]); in test_ConstructorLjava_lang_Throwable() local
159 Object ret = mth.invoke(new TestMethod(), new Object[0]); in test_ConstructorLjava_lang_ThrowableLjava_lang_String() local
180 Object ret = mth.invoke(new TestMethod(), new Object[0]); in test_getTargetException() local
201 Object ret = mth.invoke(new TestMethod(), new Object[0]); in test_getCause() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DIntBufferTest.java113 IntBuffer ret = buf.compact(); in testCompact() local
261 IntBuffer ret = buf.get(array); in testGetintArray() local
340 IntBuffer ret = buf.get(array, 0, array.length); in testGetintArrayintint() local
400 IntBuffer ret = buf.put((int) i); in testPutint() local
421 IntBuffer ret = buf.put(array); in testPutintArray() local
500 IntBuffer ret = buf.put(array, 0, array.length); in testPutintArrayintint() local
534 IntBuffer ret = buf.put(other); in testPutIntBuffer() local
548 IntBuffer ret = buf.put(i, (int) i); in testPutintint() local
DFloatBufferTest.java114 FloatBuffer ret = buf.compact(); in testCompact() local
281 FloatBuffer ret = buf.get(array); in testGetfloatArray() local
362 FloatBuffer ret = buf.get(array, 0, array.length); in testGetfloatArrayintint() local
424 FloatBuffer ret = buf.put((float) i); in testPutfloat() local
445 FloatBuffer ret = buf.put(array); in testPutfloatArray() local
524 FloatBuffer ret = buf.put(array, 0, array.length); in testPutfloatArrayintint() local
558 FloatBuffer ret = buf.put(other); in testPutFloatBuffer() local
572 FloatBuffer ret = buf.put(i, (float) i); in testPutintfloat() local
DLongBufferTest.java113 LongBuffer ret = buf.compact(); in testCompact() local
261 LongBuffer ret = buf.get(array); in testGetlongArray() local
341 LongBuffer ret = buf.get(array, 0, array.length); in testGetlongArrayintint() local
401 LongBuffer ret = buf.put((long) i); in testPutlong() local
422 LongBuffer ret = buf.put(array); in testPutlongArray() local
507 LongBuffer ret = buf.put(array, 0, array.length); in testPutlongArrayintint() local
541 LongBuffer ret = buf.put(other); in testPutLongBuffer() local
555 LongBuffer ret = buf.put(i, (long) i); in testPutintlong() local
DShortBufferTest.java112 ShortBuffer ret = buf.compact(); in testCompact() local
260 ShortBuffer ret = buf.get(array); in testGetshortArray() local
327 ShortBuffer ret = buf.get(array, 0, array.length); in testGetshortArrayintint() local
387 ShortBuffer ret = buf.put((short) i); in testPutshort() local
408 ShortBuffer ret = buf.put(array); in testPutshortArray() local
487 ShortBuffer ret = buf.put(array, 0, array.length); in testPutshortArrayintint() local
521 ShortBuffer ret = buf.put(other); in testPutShortBuffer() local
535 ShortBuffer ret = buf.put(i, (short) i); in testPutintshort() local
DDoubleBufferTest.java137 DoubleBuffer ret = buf.compact(); in testCompact() local
291 DoubleBuffer ret = buf.get(array); in testGetdoubleArray() local
364 DoubleBuffer ret = buf.get(array, 0, array.length); in testGetdoubleArrayintint() local
424 DoubleBuffer ret = buf.put((double) i); in testPutdouble() local
446 DoubleBuffer ret = buf.put(array); in testPutdoubleArray() local
519 DoubleBuffer ret = buf.put(array, 0, array.length); in testPutdoubleArrayintint() local
547 DoubleBuffer ret = buf.put(other); in testPutDoubleBuffer() local
561 DoubleBuffer ret = buf.put(i, (double) i); in testPutintdouble() local
DCharBufferTest.java142 CharBuffer ret = buf.compact(); in testCompact() local
323 CharBuffer ret = buf.get(array); in testGetcharArray() local
396 CharBuffer ret = buf.get(array, 0, array.length); in testGetcharArrayintint() local
443 CharBuffer ret = buf.put((char) i); in testPutchar() local
465 CharBuffer ret = buf.put(array); in testPutcharArray() local
549 CharBuffer ret = buf.put(array, 0, array.length); in testPutcharArrayintint() local
590 CharBuffer ret = buf.put(other); in testPutCharBuffer() local
604 CharBuffer ret = buf.put(i, (char) i); in testPutintchar() local
724 CharBuffer ret = buf.put(str); in testPutString() local
802 CharBuffer ret = buf.put(str, 0, str.length()); in testPutStringintint() local
DAbstractBufferTest.java51 Buffer ret = baseBuf.clear(); in testClear() local
72 Buffer ret = baseBuf.flip(); in testFlip() local
DByteBufferTest.java173 ByteBuffer ret = buf.compact(); in testCompact() local
326 ByteBuffer ret = buf.get(array); in testGetbyteArray() local
405 ByteBuffer ret = buf.get(array, 0, array.length); in testGetbyteArrayintint() local
523 ByteBuffer ret = buf.put((byte) i); in testPutbyte() local
554 ByteBuffer ret = buf.put(array); in testPutbyteArray() local
644 ByteBuffer ret = buf.put(array, 0, array.length); in testPutbyteArrayintint() local
693 ByteBuffer ret = buf.put(other); in testPutByteBuffer() local
739 ByteBuffer ret = buf.put(other); in testPutByteBuffer() local
764 ByteBuffer ret = buf.put(i, (byte) i); in testPutintbyte() local
/libcore/luni/src/test/native/
Dlibcore_java_io_FileTest.cpp37 int ret = stat(subDir.c_str(), &sb); in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs() local
73 long ret = prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); in Java_libcore_java_io_FileTest_installSeccompFilter() local
/libcore/ojluni/src/main/java/sun/misc/
DRegexpPool.java58 public void add(String re, Object ret) throws REException { in add()
74 public void replace(String re, Object ret) { in replace()
165 private void add(String re, Object ret, boolean replace) throws REException { in add()
/libcore/luni/src/main/java/java/math/
DNativeBN.java42 public static native void BN_bin2bn(byte[] s, int len, boolean neg, long ret); in BN_bin2bn()
47 public static native void litEndInts2bn(int[] ints, int len, boolean neg, long ret); in litEndInts2bn()
49 public static native void twosComp2bn(byte[] s, int len, long ret); in twosComp2bn()
118 public static native void BN_mod_inverse(long ret, long a, long n); in BN_mod_inverse()
122 public static native void BN_generate_prime_ex(long ret, int bits, boolean safe, in BN_generate_prime_ex()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/
DP.java34 String ret = null; in findProp() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/
DP.java17 String ret = null; in findProp() local
/libcore/ojluni/src/test/java/time/test/java/time/format/
DTestZoneTextPrinterParser.java196 String ret = fmt.parse(text, TemporalQueries.zone()).getId(); in test_ParseText() local
232 String ret = fmt.parse(text, TemporalQueries.zone()).getId(); in parse() local
/libcore/ojluni/src/main/native/
Djava_util_zip_Inflater.c70 int ret = inflateInit2(strm, nowrap ? -MAX_WBITS : MAX_WBITS); in Inflater_init() local
127 int ret; in Inflater_inflateBytes() local
DNativeThread.c94 int ret; in NativeThread_signal() local
DFileInputStream.c119 jlong ret; in FileInputStream_available0() local
/libcore/luni/src/test/java/libcore/java/io/
DOldAndroidPipedStreamTest.java284 int ret = n1 + n2; in next() local
/libcore/ojluni/src/main/java/java/io/
DPipedReader.java267 int ret = buffer[out++]; in read() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
DReferenceQueueTest.java161 Reference ret = rq.remove(0L); in test_removeJ() local
/libcore/luni/src/main/native/
Djava_math_NativeBN.cpp175 …ic void NativeBN_BN_bin2bn(JNIEnv* env, jclass, jbyteArray arr, int len, jboolean neg, jlong ret) { in NativeBN_BN_bin2bn()
191 BIGNUM* ret = toBigNum(ret0); in NativeBN_litEndInts2bn() local
213 BIGNUM* ret = toBigNum(ret0); in NativeBN_twosComp2bn() local
497 static void NativeBN_BN_mod_inverse(JNIEnv* env, jclass, jlong ret, jlong a, jlong n) { in NativeBN_BN_mod_inverse()
505 static void NativeBN_BN_generate_prime_ex(JNIEnv* env, jclass, jlong ret, int bits, in NativeBN_BN_generate_prime_ex()
/libcore/ojluni/src/main/java/java/util/
DBase64.java263 int ret = encode0(src, 0, src.length, dst); in encode() local
336 int ret = 0; in encode() local
526 int ret = decode0(src, 0, src.length, dst); in decode() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSelectorTest.java661 int ret = 0; in selectOnce() local

12