Searched refs:vw (Results 1 – 1 of 1) sorted by relevance
/dalvik/dx/tests/141-invoke-polymorphic-varhandles/ |
D | VarHandleDexTest.java | 173 VarHandle vw = MethodHandles.arrayElementVarHandle(words.getClass()); in main() local 178 … String s0 = (String) vw.compareAndExchangeAcquire(words, index, expectedValue, newValue); in main() 179 vw.compareAndExchangeAcquire(words, index, expectedValue, newValue); in main() 180 String s1 = (String) vw.compareAndExchange(words, index, expectedValue, newValue); in main() 181 vw.compareAndExchange(words, index, expectedValue, newValue); in main() 182 … String s2 = (String) vw.compareAndExchangeRelease(words, index, expectedValue, newValue); in main() 183 vw.compareAndExchangeRelease(words, index, expectedValue, newValue); in main() 185 boolean r0 = vw.compareAndSet(words, index, expectedValue, newValue); in main() 186 vw.compareAndSet(words, index, expectedValue, newValue); in main() 187 boolean r1 = vw.weakCompareAndSetAcquire(words, index, expectedValue, newValue); in main() [all …]
|