Home
last modified time | relevance | path

Searched refs:AtomicIntegerArray (Results 1 – 7 of 7) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DAtomicIntegerArrayTest.java12 import java.util.concurrent.atomic.AtomicIntegerArray;
33 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testConstructor()
44 new AtomicIntegerArray(a); in testConstructor2NPE()
54 AtomicIntegerArray aa = new AtomicIntegerArray(a); in testConstructor2()
64 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testIndexing()
101 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetSet()
116 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetLazySet()
131 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testCompareAndSet()
149 final AtomicIntegerArray a = new AtomicIntegerArray(1); in testCompareAndSetInMultipleThreads()
169 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testWeakCompareAndSet()
[all …]
DAtomic8Test.java11 import java.util.concurrent.atomic.AtomicIntegerArray;
252 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndUpdate()
264 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayUpdateAndGet()
276 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndAccumulate()
288 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayAccumulateAndGet()
506 () -> new AtomicIntegerArray(1).getAndUpdate(0, null), in testGetAndUpdateNPE()
527 () -> new AtomicIntegerArray(1).updateAndGet(0, null), in testUpdateAndGetNPE()
546 () -> new AtomicIntegerArray(1).getAndAccumulate(0, 1, null), in testGetAndAccumulateNPE()
565 () -> new AtomicIntegerArray(1).accumulateAndGet(0, 1, null), in testAccumulateAndGetNPE()
/libcore/ojluni/src/test/java/util/concurrent/tck/
DAtomicIntegerArrayTest.java38 import java.util.concurrent.atomic.AtomicIntegerArray;
56 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testConstructor()
67 new AtomicIntegerArray(a); in testConstructor2NPE()
77 AtomicIntegerArray aa = new AtomicIntegerArray(a); in testConstructor2()
87 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testIndexing()
124 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetSet()
139 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetLazySet()
154 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testCompareAndSet()
172 final AtomicIntegerArray a = new AtomicIntegerArray(1); in testCompareAndSetInMultipleThreads()
192 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testWeakCompareAndSet()
[all …]
DAtomic8Test.java37 import java.util.concurrent.atomic.AtomicIntegerArray;
273 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndUpdate()
285 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayUpdateAndGet()
297 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndAccumulate()
309 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayAccumulateAndGet()
527 () -> new AtomicIntegerArray(1).getAndUpdate(0, null), in testGetAndUpdateNPE()
545 () -> new AtomicIntegerArray(1).updateAndGet(0, null), in testUpdateAndGetNPE()
564 () -> new AtomicIntegerArray(1).getAndAccumulate(0, 1, null), in testGetAndAccumulateNPE()
583 () -> new AtomicIntegerArray(1).accumulateAndGet(0, 1, null), in testAccumulateAndGetNPE()
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicIntegerArray.java49 public class AtomicIntegerArray implements java.io.Serializable { class
82 public AtomicIntegerArray(int length) { in AtomicIntegerArray() method in AtomicIntegerArray
93 public AtomicIntegerArray(int[] array) { in AtomicIntegerArray() method in AtomicIntegerArray
/libcore/
Dopenjdk_java_files.bp991 "ojluni/src/main/java/java/util/concurrent/atomic/AtomicIntegerArray.java",
/libcore/api/
Dcurrent.txt15171 public class AtomicIntegerArray implements java.io.Serializable {
15172 ctor public AtomicIntegerArray(int);
15173 ctor public AtomicIntegerArray(int[]);