OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expectedreference
(Results
1 - 4
of
4
) sorted by null
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java
119
* @param
expectedReference
the expected value of the reference
125
public boolean weakCompareAndSet(V
expectedReference
,
129
return compareAndSet(
expectedReference
, newReference,
139
* @param
expectedReference
the expected value of the reference
145
public boolean compareAndSet(V
expectedReference
,
151
expectedReference
== current.reference &&
179
* @param
expectedReference
the expected value of the reference
183
public boolean attemptMark(V
expectedReference
, boolean newMark) {
186
expectedReference
== current.reference &&
188
casPair(current, Pair.of(
expectedReference
, newMark)))
[
all
...]
AtomicStampedReference.java
119
* @param
expectedReference
the expected value of the reference
125
public boolean weakCompareAndSet(V
expectedReference
,
129
return compareAndSet(
expectedReference
, newReference,
139
* @param
expectedReference
the expected value of the reference
145
public boolean compareAndSet(V
expectedReference
,
151
expectedReference
== current.reference &&
179
* @param
expectedReference
the expected value of the reference
183
public boolean attemptStamp(V
expectedReference
, int newStamp) {
186
expectedReference
== current.reference &&
188
casPair(current, Pair.of(
expectedReference
, newStamp)))
[
all
...]
/prebuilts/sdk/13/
android.jar
/prebuilts/tools/common/m2/repository/org/assertj/assertj-core/3.8.0/
assertj-core-3.8.0.jar
Completed in 354 milliseconds