Searched refs:set (Results 151 - 175 of 308) sorted by relevance

1234567891011>>

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DAtomicReference.java95 public final void set(V newValue) { method in class:AtomicReference
H A DAtomicStampedReference.java164 public void set(V newReference, int newStamp) { method in class:AtomicStampedReference
176 * thread is also attempting to set the value will eventually
H A DAtomicIntegerFieldUpdater.java61 * {@code compareAndSet} and {@code set} on the same updater.
101 * other calls to {@code compareAndSet} and {@code set}, but not
104 * @param obj An object whose field to conditionally set
117 * other calls to {@code compareAndSet} and {@code set}, but not
124 * @param obj An object whose field to conditionally set
138 * @param obj An object whose field to set
141 public abstract void set(T obj, int newValue); method in class:AtomicIntegerFieldUpdater
147 * @param obj An object whose field to set
166 * @param obj An object whose field to get and set
182 * @param obj An object whose field to get and set
478 public final void set(T obj, int newValue) { method in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
[all...]
H A DAtomicReferenceFieldUpdater.java78 * {@code compareAndSet} and {@code set} on the same updater.
123 * other calls to {@code compareAndSet} and {@code set}, but not
126 * @param obj An object whose field to conditionally set
137 * other calls to {@code compareAndSet} and {@code set}, but not
144 * @param obj An object whose field to conditionally set
156 * @param obj An object whose field to set
159 public abstract void set(T obj, V newValue); method in class:AtomicReferenceFieldUpdater
165 * @param obj An object whose field to set
184 * @param obj An object whose field to get and set
202 * @param obj An object whose field to get and set
422 public final void set(T obj, V newValue) { method in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
[all...]
/libcore/ojluni/src/main/java/javax/security/auth/
H A DSubject.java110 * @serial Each element in this set is a
112 * The set is a {@code Subject.SecureSet}.
143 * has been set read-only before permitting subsequent modifications.
171 * has been set read-only before permitting subsequent modifications.
236 * to set this {@code Subject} to be read-only.
354 // set up the new Subject-based AccessControlContext
417 // set up the new Subject-based AccessControlContext for doPrivileged
474 // set up the new Subject-based AccessControlContext
541 // set up the new Subject-based AccessControlContext for doPrivileged
680 // would do is protect the set operation
1037 SecureSet(Subject subject, int which, Set<? extends E> set) argument
1357 private Set<T> set; field in class:Subject.ClassSet
[all...]
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DIOVecWrapper.java105 cached.set(wrapper);
/libcore/ojluni/src/main/java/sun/nio/cs/
H A DThreadLocalCoders.java65 cache.set(oa);
/libcore/ojluni/src/main/java/sun/security/x509/
H A DAuthorityInfoAccessExtension.java71 * get, set, delete methods of Certificate, x509 type.
89 * AccessDescription; the criticality is set to false.
167 public void set(String name, Object obj) throws IOException { method in class:AuthorityInfoAccessExtension
H A DCRLReasonCodeExtension.java68 * Criticality automatically set to false.
110 public void set(String name, Object obj) throws IOException { method in class:CRLReasonCodeExtension
H A DCertificatePoliciesExtension.java73 * get, set, delete methods of Certificate, x509 type.
106 * a List of PolicyInformation; the criticality is set to false.
193 public void set(String name, Object obj) throws IOException { method in class:CertificatePoliciesExtension
H A DCertificateVersion.java57 * get, set, delete methods of Certificate, x509 type.
179 public void set(String name, Object obj) throws IOException { method in class:CertificateVersion
H A DInhibitAnyPolicyExtension.java71 * get, set, delete methods of Certificate, x509 type.
187 * @param name name of attribute to set. Must be SKIP_CERTS.
188 * @param obj value to which attribute is to be set. Must be Integer
192 public void set(String name, Object obj) throws IOException { method in class:InhibitAnyPolicyExtension
H A DInvalidityDateExtension.java83 * Criticality automatically set to false.
125 public void set(String name, Object obj) throws IOException { method in class:InvalidityDateExtension
H A DIssuerAlternativeNameExtension.java54 * get, set, delete methods of Certificate, x509 type.
176 public void set(String name, Object obj) throws IOException { method in class:IssuerAlternativeNameExtension
H A DPolicyMappingsExtension.java57 * get, set, delete methods of Certificate, x509 type.
167 public void set(String name, Object obj) throws IOException { method in class:PolicyMappingsExtension
H A DSubjectAlternativeNameExtension.java59 * get, set, delete methods of Certificate, x509 type.
181 public void set(String name, Object obj) throws IOException { method in class:SubjectAlternativeNameExtension
H A DSubjectInfoAccessExtension.java76 * get, set, delete methods of Certificate, x509 type.
94 * AccessDescription; the criticality is set to false.
172 public void set(String name, Object obj) throws IOException { method in class:SubjectInfoAccessExtension
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DObjectInputStream2Test.java247 f.set(o1, new Integer(v++));
249 f.set(o1, new Long(v++));
/libcore/jsr166-tests/src/test/java/jsr166/
H A DExecutorCompletionServiceTest.java165 protected void done() { done.set(true); }
184 assertTrue("completed task must have set done", done.get());
196 protected void done() { done.set(true); }
215 assertTrue("completed task must have set done", done.get());
H A DLockSupportTest.java163 pleasePark.set(true);
241 pleasePark.set(true);
H A DThreadLocalRandomTest.java328 rand.set(current.nextLong());
329 threadLocalRandom.set(current);
/libcore/luni/src/test/java/libcore/java/net/
H A DServerSocketConcurrentCloseTest.java74 failure.set(e);
103 iterationsWithConnections.set(i);
/libcore/luni/src/test/java/libcore/java/util/
H A DSimpleTimeZoneTest.java263 calendar.set(year, Calendar.JANUARY, 1, 0, 0, 0);
264 calendar.set(Calendar.MILLISECOND, 0);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFutureTask.java79 * transitions to a terminal state only in methods set,
81 * transient values of COMPLETING (while outcome is being set) or
223 * this future has already been set or has been cancelled.
230 protected void set(V v) { method in class:FutureTask
241 * already been set or has been cancelled.
274 set(result);
307 c.call(); // don't set result
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixChannelFactory.java54 * Represents the flags from a user-supplied set of open options.
105 fdAccess.set(fdObj, fd);
290 fdAccess.set(fdObj, fd);

Completed in 468 milliseconds

1234567891011>>