Home
last modified time | relevance | path

Searched refs:intValue (Results 1 – 25 of 57) sorted by relevance

123

/art/test/569-checker-pattern-replacement/src-multidex/
DDerived.java22 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()
DBase.java24 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()
DDerivedWithFinalField.java22 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()
DDerivedInSecondDex.java22 DerivedInSecondDex(int intValue) { in DerivedInSecondDex() argument
24 super(intValue); in DerivedInSecondDex()
DBaseWithFinalField.java22 BaseWithFinalField(int intValue) { in BaseWithFinalField() argument
23 intField = intValue; in BaseWithFinalField()
/art/test/610-arraycopy/src/
DMain.java25 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/
DMain.java363 public static double constructBase(int intValue) { in constructBase() argument
364 Base b = new Base(intValue); in constructBase()
487 public static double constructBase(int intValue, double doubleValue, Object objectValue) { in constructBase() argument
488 Base b = new Base(intValue, doubleValue, objectValue); in constructBase()
539 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
540 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
630 public static double constructBase(int intValue, long placeholder) { in constructBase() argument
631 Base b = new Base(intValue, placeholder); in constructBase()
671 public static double constructDerived(int intValue) { in constructDerived() argument
672 Derived d = new Derived(intValue); in constructDerived()
[all …]
DBaseInMainDex.java21 BaseInMainDex(int intValue) { in BaseInMainDex() argument
22 intField = intValue; in BaseInMainDex()
/art/test/952-invoke-custom/src/
DTestLinkerMethodMultipleArgumentTypes.java55 @Constant(intValue = -1),
56 @Constant(intValue = 1),
57 @Constant(intValue = (int) 'a'),
58 @Constant(intValue = 1024),
59 @Constant(intValue = 1),
DTestVariableArityLinkerMethod.java159 @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 …]
DTestLinkerMethodWithRange.java53 @Constant(intValue = -1),
54 @Constant(intValue = 1),
55 @Constant(intValue = (int) 'a'),
56 @Constant(intValue = 1024),
57 @Constant(intValue = 1),
DTestBadBootstrapArguments.java65 @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/
DMain.java46 return integer1.intValue() + integer2.intValue(); in test()
/art/test/004-UnsafeTest/src/
DMain.java115 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/425-invoke-super/src/
DMain.java50 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/
DMain.java85 CheckEQ(((Integer)a).intValue(), b); in CheckEQ()
88 CheckLE(((Integer)a).intValue(), ((Integer)b).intValue()); in CheckLE()
/art/test/070-nio-buffer/src/
DMain.java133 final int intValue = 0x12345678; in storeValues() local
147 if (intBuf.put(2, intValue).get(2) != intValue) { in storeValues()
/art/test/553-invoke-super/src/
DMain.java29 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main()
/art/test/556-invoke-super/src/
DMain.java33 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue()); in main()
/art/test/572-checker-array-get-regression/src/
DMain.java20 System.out.println(test().intValue()); in main()
/art/test/952-invoke-custom/util-src/annotations/
DConstant.java36 int[] intValue() default {}; in intValue() method
/art/test/802-deoptimization/src/
DMain.java35 int intResult = ((Integer) result).intValue(); in testCatchHandlerOnEntryWithoutMoveException()
/art/test/466-get-live-vreg/src/
DMain.java23 return arg1 + arg2.intValue(); in $noinline$testLiveArgument()
/art/test/1968-force-early-return/src/art/
DNonStandardExit.java32 forceEarlyReturnInt(thr, n.intValue()); in forceEarlyReturn()
/art/test/1969-force-early-return-void/src/art/
DNonStandardExit.java32 forceEarlyReturnInt(thr, n.intValue()); in forceEarlyReturn()

123