/libcore/ojluni/src/main/java/java/util/concurrent/atomic/ |
D | AtomicBoolean.java | 99 public final boolean compareAndSet(boolean expect, boolean update) { in compareAndSet() argument 101 (expect ? 1 : 0), in compareAndSet() 117 public boolean weakCompareAndSet(boolean expect, boolean update) { in weakCompareAndSet() argument 119 (expect ? 1 : 0), in weakCompareAndSet()
|
D | AtomicIntegerArray.java | 164 public final boolean compareAndSet(int i, int expect, int update) { in compareAndSet() argument 165 return compareAndSetRaw(checkedByteOffset(i), expect, update); in compareAndSet() 168 private boolean compareAndSetRaw(long offset, int expect, int update) { in compareAndSetRaw() argument 169 return U.compareAndSwapInt(array, offset, expect, update); in compareAndSetRaw() 185 public final boolean weakCompareAndSet(int i, int expect, int update) { in weakCompareAndSet() argument 186 return compareAndSet(i, expect, update); in weakCompareAndSet()
|
D | AtomicLongArray.java | 163 public final boolean compareAndSet(int i, long expect, long update) { in compareAndSet() argument 164 return compareAndSetRaw(checkedByteOffset(i), expect, update); in compareAndSet() 167 private boolean compareAndSetRaw(long offset, long expect, long update) { in compareAndSetRaw() argument 168 return U.compareAndSwapLong(array, offset, expect, update); in compareAndSetRaw() 184 public final boolean weakCompareAndSet(int i, long expect, long update) { in weakCompareAndSet() argument 185 return compareAndSet(i, expect, update); in weakCompareAndSet()
|
D | AtomicLongFieldUpdater.java | 113 public abstract boolean compareAndSet(T obj, long expect, long update); in compareAndSet() argument 133 public abstract boolean weakCompareAndSet(T obj, long expect, long update); in weakCompareAndSet() argument 453 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() argument 455 return U.compareAndSwapLong(obj, offset, expect, update); in compareAndSet() 458 public final boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet() argument 460 return U.compareAndSwapLong(obj, offset, expect, update); in weakCompareAndSet() 594 public final boolean compareAndSet(T obj, long expect, long update) { in compareAndSet() argument 598 if (v != expect) in compareAndSet() 605 public final boolean weakCompareAndSet(T obj, long expect, long update) { in weakCompareAndSet() argument 606 return compareAndSet(obj, expect, update); in weakCompareAndSet()
|
D | AtomicReferenceArray.java | 176 public final boolean compareAndSet(int i, E expect, E update) { in compareAndSet() argument 177 return compareAndSetRaw(checkedByteOffset(i), expect, update); in compareAndSet() 180 private boolean compareAndSetRaw(long offset, E expect, E update) { in compareAndSetRaw() argument 181 return U.compareAndSwapObject(array, offset, expect, update); in compareAndSetRaw() 197 public final boolean weakCompareAndSet(int i, E expect, E update) { in weakCompareAndSet() argument 198 return compareAndSet(i, expect, update); in weakCompareAndSet()
|
D | AtomicInteger.java | 133 public final boolean compareAndSet(int expect, int update) { in compareAndSet() argument 134 return U.compareAndSwapInt(this, VALUE, expect, update); in compareAndSet() 149 public final boolean weakCompareAndSet(int expect, int update) { in weakCompareAndSet() argument 150 return U.compareAndSwapInt(this, VALUE, expect, update); in weakCompareAndSet()
|
D | AtomicReference.java | 117 public final boolean compareAndSet(V expect, V update) { in compareAndSet() argument 118 return U.compareAndSwapObject(this, VALUE, expect, update); in compareAndSet() 133 public final boolean weakCompareAndSet(V expect, V update) { in weakCompareAndSet() argument 134 return U.compareAndSwapObject(this, VALUE, expect, update); in weakCompareAndSet()
|
D | AtomicLong.java | 149 public final boolean compareAndSet(long expect, long update) { in compareAndSet() argument 150 return U.compareAndSwapLong(this, VALUE, expect, update); in compareAndSet() 165 public final boolean weakCompareAndSet(long expect, long update) { in weakCompareAndSet() argument 166 return U.compareAndSwapLong(this, VALUE, expect, update); in weakCompareAndSet()
|
D | AtomicReferenceFieldUpdater.java | 130 public abstract boolean compareAndSet(T obj, V expect, V update); in compareAndSet() argument 148 public abstract boolean weakCompareAndSet(T obj, V expect, V update); in weakCompareAndSet() argument 420 public final boolean compareAndSet(T obj, V expect, V update) { in compareAndSet() argument 423 return U.compareAndSwapObject(obj, offset, expect, update); in compareAndSet() 426 public final boolean weakCompareAndSet(T obj, V expect, V update) { in weakCompareAndSet() argument 430 return U.compareAndSwapObject(obj, offset, expect, update); in weakCompareAndSet()
|
D | AtomicIntegerFieldUpdater.java | 110 public abstract boolean compareAndSet(T obj, int expect, int update); in compareAndSet() argument 130 public abstract boolean weakCompareAndSet(T obj, int expect, int update); in weakCompareAndSet() argument 478 public final boolean compareAndSet(T obj, int expect, int update) { in compareAndSet() argument 480 return U.compareAndSwapInt(obj, offset, expect, update); in compareAndSet() 483 public final boolean weakCompareAndSet(T obj, int expect, int update) { in weakCompareAndSet() argument 485 return U.compareAndSwapInt(obj, offset, expect, update); in weakCompareAndSet()
|
/libcore/luni/src/main/java/libcore/io/ |
D | Libcore.java | 49 public static boolean compareAndSetOs(Os expect, Os update) { in compareAndSetOs() argument 51 if (os != expect) { in compareAndSetOs() 55 boolean result = (os == expect); in compareAndSetOs()
|
D | Os.java | 794 public static boolean compareAndSetDefault(Os expect, Os update) { in compareAndSetDefault() argument 795 return Libcore.compareAndSetOs(expect, update); in compareAndSetDefault()
|
/libcore/luni/src/main/java/libcore/reflect/ |
D | GenericSignatureParser.java | 255 expect('>'); in parseOptFormalTypeParameters() 269 expect(':'); in parseFormalTypeParameter() 305 expect('L'); in parseClassTypeSignature() 332 expect(';'); in parseClassTypeSignature() 348 expect('>'); in parseOptTypeArguments() 380 expect('T'); in parseTypeVariableSignature() 382 expect(';'); in parseTypeVariableSignature() 416 expect('('); in parseMethodTypeSignature() 420 expect(')'); in parseMethodTypeSignature() 469 void expect(char c) { in expect() method in GenericSignatureParser
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/atomic/ |
D | AtomicInteger.java | 67 public final boolean compareAndSet(int expect, int update) { in compareAndSet() argument 71 public final boolean weakCompareAndSet(int expect, int update) { in weakCompareAndSet() argument
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | CryptoPolicyParser.java | 57 ParsingException(int line, String expect, String actual) { in ParsingException() argument
|
/libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
D | AbstractQueuedSynchronizer.java | 518 final boolean compareAndSetWaitStatus(int expect, int update) { in compareAndSetWaitStatus() argument 519 return U.compareAndSwapInt(this, WAITSTATUS, expect, update); in compareAndSetWaitStatus() 523 final boolean compareAndSetNext(Node expect, Node update) { in compareAndSetNext() argument 524 return U.compareAndSwapObject(this, NEXT, expect, update); in compareAndSetNext() 596 protected final boolean compareAndSetState(int expect, int update) { in compareAndSetState() argument 597 return U.compareAndSwapInt(this, STATE, expect, update); in compareAndSetState() 2328 private final boolean compareAndSetTail(Node expect, Node update) { in compareAndSetTail() argument 2329 return U.compareAndSwapObject(this, TAIL, expect, update); in compareAndSetTail()
|
D | AbstractQueuedLongSynchronizer.java | 130 protected final boolean compareAndSetState(long expect, long update) { in compareAndSetState() argument 131 return U.compareAndSwapLong(this, STATE, expect, update); in compareAndSetState() 1856 private final boolean compareAndSetTail(Node expect, Node update) { in compareAndSetTail() argument 1857 return U.compareAndSwapObject(this, TAIL, expect, update); in compareAndSetTail()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ThreadPoolExecutor.java | 435 private boolean compareAndIncrementWorkerCount(int expect) { in compareAndIncrementWorkerCount() argument 436 return ctl.compareAndSet(expect, expect + 1); in compareAndIncrementWorkerCount() 442 private boolean compareAndDecrementWorkerCount(int expect) { in compareAndDecrementWorkerCount() argument 443 return ctl.compareAndSet(expect, expect - 1); in compareAndDecrementWorkerCount()
|
D | ForkJoinTask.java | 1352 public final boolean compareAndSetForkJoinTaskTag(short expect, short update) { in compareAndSetForkJoinTaskTag() argument 1354 if ((short)(s = status) != expect) in compareAndSetForkJoinTaskTag()
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | AbstractZipFileTest.java | 607 } catch(IndexOutOfBoundsException expect) {} in testReadWithOffsetInvalid() 611 } catch(IndexOutOfBoundsException expect) {} in testReadWithOffsetInvalid() 615 } catch(IndexOutOfBoundsException expect) {} in testReadWithOffsetInvalid() 619 } catch(IndexOutOfBoundsException expect) {} in testReadWithOffsetInvalid()
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | ThreadPoolExecutor.java | 107 private boolean compareAndIncrementWorkerCount(int expect) { in compareAndIncrementWorkerCount() argument 111 private boolean compareAndDecrementWorkerCount(int expect) { in compareAndDecrementWorkerCount() argument
|
/libcore/expectations/ |
D | virtualdeviceknownfailures.txt | 42 expect, causing this test to fail, and our emulators currently use those kernel
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
D | CharsetEncoderTest.java | 899 CharBuffer in, byte[] expect) { in assertCodingErrorAction() argument 901 assertByteArray(out, addSurrogate(expect)); in assertCodingErrorAction() 908 assertByteArray(out, addSurrogate(duplicateByteArray(expect, 3))); in assertCodingErrorAction()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ForkJoinTaskTest.java | 319 protected final boolean compareAndSetControlState(int expect, 321 return controlStateUpdater.compareAndSet(this, expect, update);
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ForkJoinTaskTest.java | 341 protected final boolean compareAndSetControlState(int expect, 343 return controlStateUpdater.compareAndSet(this, expect, update);
|