Searched defs:tclass (Results 1 - 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/ |
H A D | AtomicIntegerFieldUpdater.java | 73 * @param tclass the class of the objects holding the field 75 * @param <U> the type of instances of tclass 85 public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass, argument 88 (tclass, fieldName, VMStack.getStackClass1()); // Android-changed 375 * the same as tclass 379 private final Class<T> tclass; field in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl 381 AtomicIntegerFieldUpdaterImpl(final Class<T> tclass, argument 390 return tclass.getDeclaredField(fieldName); 396 // caller, tclass, null, modifiers); 397 // ClassLoader cl = tclass [all...] |
H A D | AtomicReferenceFieldUpdater.java | 92 * @param tclass the class of the objects holding the field 95 * @param <U> the type of instances of tclass 106 public static <U,W> AtomicReferenceFieldUpdater<U,W> newUpdater(Class<U> tclass, argument 110 (tclass, vclass, fieldName, VMStack.getStackClass1()); // Android-changed 292 * the same as tclass 296 private final Class<T> tclass; field in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl 312 AtomicReferenceFieldUpdaterImpl(final Class<T> tclass, argument 320 field = tclass.getDeclaredField(fieldName); // Android-changed 324 // caller, tclass, null, modifiers); 325 // ClassLoader cl = tclass [all...] |
H A D | AtomicLongFieldUpdater.java | 73 * @param tclass the class of the objects holding the field 75 * @param <U> the type of instances of tclass 85 public static <U> AtomicLongFieldUpdater<U> newUpdater(Class<U> tclass, argument 89 return new CASUpdater<U>(tclass, fieldName, caller); 91 return new LockedUpdater<U>(tclass, fieldName, caller); 374 * the same as tclass 378 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.CASUpdater 380 CASUpdater(final Class<T> tclass, final String fieldName, argument 385 field = tclass.getDeclaredField(fieldName); // Android-changed 389 // caller, tclass, nul 508 private final Class<T> tclass; field in class:AtomicLongFieldUpdater.LockedUpdater 510 LockedUpdater(final Class<T> tclass, final String fieldName, final Class<?> caller) argument [all...] |
Completed in 571 milliseconds