Searched refs:newValue (Results 1 – 3 of 3) sorted by relevance
/dalvik/dx/tests/141-invoke-polymorphic-varhandles/ |
D | VarHandleDexTest.java | 35 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/ |
D | InvokeCustom.java | 105 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/ |
D | InvokeCustom.java | 109 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()
|