/art/test/569-checker-pattern-replacement/src-multidex/ |
D | Derived.java | 22 public Derived(int intValue) { in Derived() argument 23 super(intValue); in Derived() 35 public Derived(int intValue, double doubleValue, Object objectValue) { in Derived() argument 36 super(intValue, doubleValue, objectValue); in Derived() 41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { in Derived() argument 42 super(intValue, doubleValue, objectValue, stringValue); in Derived() 56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { in Derived() argument 57 super(intValue, doubleValue, objectValue); in Derived()
|
D | Base.java | 24 Base(int intValue) { in Base() argument 25 intField = intValue; in Base() 39 Base(int intValue, double doubleValue, Object objectValue) { in Base() argument 40 intField = intValue; in Base() 45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { in Base() argument 47 intField = intValue; in Base() 62 Base(int intValue, long unused) { in Base() argument 63 this(intValue, 0.0, null); in Base()
|
D | DerivedWithFinalField.java | 22 DerivedWithFinalField(int intValue) { in DerivedWithFinalField() argument 23 super(intValue); in DerivedWithFinalField() 32 DerivedWithFinalField(int intValue, double doubleValue) { in DerivedWithFinalField() argument 33 super(intValue); in DerivedWithFinalField()
|
D | BaseWithFinalField.java | 22 BaseWithFinalField(int intValue) { in BaseWithFinalField() argument 23 intField = intValue; in BaseWithFinalField()
|
D | DerivedInSecondDex.java | 22 DerivedInSecondDex(int intValue) { in DerivedInSecondDex() argument 24 super(intValue); in DerivedInSecondDex()
|
/art/test/610-arraycopy/src/ |
D | Main.java | 25 expectEquals(0, ((Integer)a[0]).intValue()); in main() 26 expectEquals(0, ((Integer)a[1]).intValue()); in main() 27 expectEquals(1, ((Integer)a[2]).intValue()); in main() 28 expectEquals(2, ((Integer)a[3]).intValue()); in main() 29 expectEquals(4, ((Integer)a[4]).intValue()); in main()
|
/art/test/569-checker-pattern-replacement/src/ |
D | Main.java | 367 public static double constructBase(int intValue) { in constructBase() argument 368 Base b = new Base(intValue); in constructBase() 491 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase() argument 492 Base b = new Base(intValue, doubleValue, objectValue); in constructBase() 543 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument 544 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase() 634 public static double constructBase(int intValue, long placeholder) { in constructBase() argument 635 Base b = new Base(intValue, placeholder); in constructBase() 675 public static double constructDerived(int intValue) { in constructDerived() argument 676 Derived d = new Derived(intValue); in constructDerived() [all …]
|
D | BaseInMainDex.java | 21 BaseInMainDex(int intValue) { in BaseInMainDex() argument 22 intField = intValue; in BaseInMainDex()
|
/art/test/952-invoke-custom/src/ |
D | TestLinkerMethodMultipleArgumentTypes.java | 55 @Constant(intValue = -1), 56 @Constant(intValue = 1), 57 @Constant(intValue = (int) 'a'), 58 @Constant(intValue = 1024), 59 @Constant(intValue = 1),
|
D | TestVariableArityLinkerMethod.java | 159 @Constant(intValue = 101), 184 @Constant(intValue = 102), 206 constantArgumentsForBootstrapMethod = {@Constant(intValue = 103)} 240 @Constant(intValue = +1), 241 @Constant(intValue = -1), 242 @Constant(intValue = +2), 243 @Constant(intValue = -2) 409 constantArgumentsForBootstrapMethod = {@Constant(intValue = 103), @Constant(intValue = 104)} 431 @Constant(intValue = 103), 434 @Constant(intValue = 42) [all …]
|
D | TestLinkerMethodWithRange.java | 53 @Constant(intValue = -1), 54 @Constant(intValue = 1), 55 @Constant(intValue = (int) 'a'), 56 @Constant(intValue = 1024), 57 @Constant(intValue = 1),
|
D | TestBadBootstrapArguments.java | 65 @Constant(intValue = -1), 93 @Constant(intValue = -1), 148 @Constant(intValue = 1), 150 @Constant(intValue = 3) 296 @Constant(intValue = Integer.MAX_VALUE)
|
/art/test/573-checker-checkcast-regression/src/ |
D | Main.java | 46 return integer1.intValue() + integer2.intValue(); in test()
|
/art/test/004-UnsafeTest/src/ |
D | Main.java | 115 int intValue = 12345678; in testGetAndPutAndCAS() local 119 unsafe.putInt(t, intOffset, intValue); in testGetAndPutAndCAS() 120 check(t.intVar, intValue, "Unsafe.putInt(Object, long, int)"); in testGetAndPutAndCAS() 121 check(unsafe.getInt(t, intOffset), intValue, "Unsafe.getInt(Object, long)"); in testGetAndPutAndCAS() local 142 if (!unsafe.compareAndSwapInt(t, intOffset, intValue, 0)) { in testGetAndPutAndCAS() 218 int intValue = 12345678; in testGetAndPutVolatile() local 224 unsafe.putIntVolatile(tv, volatileIntOffset, intValue); in testGetAndPutVolatile() 225 check(tv.volatileIntVar, intValue, "Unsafe.putIntVolatile(Object, long, int)"); in testGetAndPutVolatile() 227 intValue, in testGetAndPutVolatile() local
|
/art/test/822-hiddenapi-future/src/ |
D | Main.java | 30 if (result.intValue() != 42) { in main() 31 throw new Error("Expected 42, got " + result.intValue()); in main()
|
/art/test/425-invoke-super/src/ |
D | Main.java | 50 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main() 53 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main()
|
/art/test/2000-virtual-list-structural/src/ |
D | Main.java | 85 CheckEQ(((Integer)a).intValue(), b); in CheckEQ() 88 CheckLE(((Integer)a).intValue(), ((Integer)b).intValue()); in CheckLE()
|
/art/test/070-nio-buffer/src/ |
D | Main.java | 133 final int intValue = 0x12345678; in storeValues() local 147 if (intBuf.put(2, intValue).get(2) != intValue) { in storeValues()
|
/art/test/553-invoke-super/src/ |
D | Main.java | 29 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main()
|
/art/test/556-invoke-super/src/ |
D | Main.java | 33 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main()
|
/art/test/572-checker-array-get-regression/src/ |
D | Main.java | 20 System.out.println(test().intValue()); in main()
|
/art/test/952-invoke-custom/util-src/annotations/ |
D | Constant.java | 36 int[] intValue() default {}; in intValue() method
|
/art/test/802-deoptimization/src/ |
D | Main.java | 35 int intResult = ((Integer) result).intValue(); in testCatchHandlerOnEntryWithoutMoveException()
|
/art/test/905-object-free/src/art/ |
D | Test905.java | 130 if ((idx.intValue() - 1) % 2 == 0) { in stress() 131 saved[(idx.intValue() - 1)/2] = obj; in stress()
|
/art/test/1970-force-early-return-long/src/art/ |
D | NonStandardExit.java | 32 forceEarlyReturnInt(thr, n.intValue()); in forceEarlyReturn()
|