Home
last modified time | relevance | path

Searched refs:words (Results 1 – 2 of 2) sorted by relevance

/dalvik/dx/tests/141-invoke-polymorphic-varhandles/
DVarHandleDexTest.java172 String[] words = { "okay", "stevie", "bring", "your", "three", "friends", "up" }; in main() local
173 VarHandle vw = MethodHandles.arrayElementVarHandle(words.getClass()); in main()
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()
[all …]
/dalvik/docs/
Dprettify.js96 function wordSet(words) { argument
97 words = words.split(/ /g);
99 for (var i = words.length; --i >= 0;) {
100 var w = words[i];