Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/tests/141-invoke-polymorphic-varhandles/
DVarHandleDexTest.java35 boolean newValue = true; in main()
38 boolean b0 = (boolean) vb.compareAndExchangeAcquire(t, expectedValue, newValue); in main()
39 vb.compareAndExchangeAcquire(t, expectedValue, newValue); in main()
40 boolean b1 = (boolean) vb.compareAndExchange(t, expectedValue, newValue); in main()
41 vb.compareAndExchange(t, expectedValue, newValue); in main()
42 boolean b2 = (boolean) vb.compareAndExchangeRelease(t, expectedValue, newValue); in main()
43 vb.compareAndExchangeRelease(t, expectedValue, newValue); in main()
45 boolean r0 = vb.compareAndSet(t, expectedValue, newValue); in main()
46 vb.compareAndSet(t, expectedValue, newValue); in main()
47 boolean r1 = vb.weakCompareAndSetAcquire(t, expectedValue, newValue); in main()
[all …]
/dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/
DInvokeCustom.java105 int newValue = (int) getter.invokeExact(); in checkStaticFieldTest9() local
106 System.out.print("checkStaticFieldTest9: old " + oldValue + " new " + newValue + in checkStaticFieldTest9()
108 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR"); in checkStaticFieldTest9()
118 float newValue = (float) getter.invokeExact(this); in checkFieldTest9() local
119 System.out.print("checkFieldTest9: old " + oldValue + " new " + newValue + in checkFieldTest9()
121 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR"); in checkFieldTest9()
/dalvik/dx/tests/135-invoke-custom/src/invokecustom/
DInvokeCustom.java109 int newValue = (int) getter.invokeExact(); in checkStaticFieldTest9() local
110 System.out.print("checkStaticFieldTest9: old " + oldValue + " new " + newValue + in checkStaticFieldTest9()
112 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR"); in checkStaticFieldTest9()
122 float newValue = (float) getter.invokeExact(this); in checkFieldTest9() local
123 System.out.print("checkFieldTest9: old " + oldValue + " new " + newValue + in checkFieldTest9()
125 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR"); in checkFieldTest9()