Lines Matching refs:value

36     static byte passThrough(byte value) {  in passThrough()  argument
37 return value; in passThrough()
40 static char passThrough(char value) { in passThrough() argument
41 return value; in passThrough()
44 static double passThrough(double value) { in passThrough() argument
45 return value; in passThrough()
48 static float passThrough(float value) { in passThrough() argument
49 return value; in passThrough()
52 static int passThrough(int value) { in passThrough() argument
53 return value; in passThrough()
56 static Object passThrough(Object value) { in passThrough() argument
57 return value; in passThrough()
60 static Object[] passThrough(Object[] value) { in passThrough() argument
61 return value; in passThrough()
64 static long passThrough(long value) { in passThrough() argument
65 return value; in passThrough()
68 static short passThrough(short value) { in passThrough() argument
69 return value; in passThrough()
74 static boolean passThrough(boolean value) { in passThrough() argument
75 return value; in passThrough()
85 private static byte passThroughCallSite(byte value) { in passThroughCallSite() argument
97 private static char passThroughCallSite(char value) { in passThroughCallSite() argument
109 private static double passThroughCallSite(double value) { in passThroughCallSite() argument
121 private static float passThroughCallSite(float value) { in passThroughCallSite() argument
133 private static int passThroughCallSite(int value) { in passThroughCallSite() argument
145 private static long passThroughCallSite(long value) { in passThroughCallSite() argument
157 private static Object passThroughCallSite(Object value) { in passThroughCallSite() argument
169 private static Object[] passThroughCallSite(Object[] value) { in passThroughCallSite() argument
181 private static short passThroughCallSite(short value) { in passThroughCallSite() argument
204 private static boolean passThroughCallSite(boolean value) { in passThroughCallSite() argument
211 for (byte value : values) { in testByteReturnValues()
212 assertEquals(value, (byte) passThroughCallSite(value)); in testByteReturnValues()
223 for (char value : values) { in testCharReturnValues()
224 assertEquals(value, (char) passThroughCallSite(value)); in testCharReturnValues()
237 for (double value : values) { in testDoubleReturnValues()
238 assertEquals(value, (double) passThroughCallSite(value)); in testDoubleReturnValues()
251 for (float value : values) { in testFloatReturnValues()
252 assertEquals(value, (float) passThroughCallSite(value)); in testFloatReturnValues()
258 for (int value : values) { in testIntReturnValues()
259 assertEquals(value, (int) passThroughCallSite(value)); in testIntReturnValues()
265 for (long value : values) { in testLongReturnValues()
266 assertEquals(value, (long) passThroughCallSite(value)); in testLongReturnValues()
272 for (Object value : values) { in testObjectReturnValues()
273 assertEquals(value, (Object) passThroughCallSite(value)); in testObjectReturnValues()
287 for (short value : values) { in testShortReturnValues()
288 assertEquals(value, (short) passThroughCallSite(value)); in testShortReturnValues()
308 for (boolean value : values) { in testBooleanReturnValues()
309 assertEquals(value, (boolean) passThroughCallSite(value)); in testBooleanReturnValues()