HomeSort by relevance Sort by last modified time
    Searched full:referent (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /packages/apps/TV/src/com/android/tv/util/
ImageLoader.java 104 * Creates an callback keeping a weak reference to {@code referent}.
106 * <p> If the "referent" is no longer valid, it no longer makes sense to run the
107 * callback. The referent is the View, or Activity or whatever that actually needs to
108 * receive the Bitmap. If the referent has been GC, then no need to run the callback.
110 public ImageLoaderCallback(T referent) {
111 mWeakReference = new WeakReference<>(referent);
118 T referent = mWeakReference.get(); local
119 if (referent != null) {
120 onBitmapLoaded(referent, bitmap);
129 public abstract void onBitmapLoaded(T referent, @Nullable Bitmap bitmap)
    [all...]
  /art/runtime/gc/
reference_queue.h 68 // the zombie field, and the referent field is cleared.
74 // References with a black referent are removed from the list. References with white referents
  /packages/apps/TV/src/com/android/tv/dvr/ui/
RecordingCardView.java 95 RecordingCardImageLoaderCallback(RecordingCardView referent, String uri) {
96 super(referent);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
PhantomReferenceTest.java 25 //TODO: write a test to verify that the referent's finalize() happens
54 public TestPhantomReference(T referent,
56 super(referent, q);
  /system/bt/osi/src/
buffer.c 74 // We're a leaf node. Delete the root node if we're the last referent.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 515 MethodLocation referent = instructionList.get(mapCodeAddressToIndex(codeAddress));
516 return referent.addNewLabel();
524 MethodLocation referent = instructionList.get(instructionIndex);
525 return referent.addNewLabel();
530 MethodLocation referent = instructionList.get(mapCodeAddressToIndex(codeAddressToIndex, codeAddress));
531 return referent.addNewLabel();
541 MethodLocation referent = instructionList.get(mapCodeAddressToIndex(codeAddressToIndex, codeAddress));
544 referent.getLabels().add(label);
    [all...]
  /art/test/079-phantom/src/
Bitmap.java 109 * as our referent. We need the copy because you can't get the referred-to
  /libcore/ojluni/src/main/java/java/lang/ref/
package-info.java 52 * the <em>referent</em>. Every reference object provides methods for getting and
65 * garbage collector determines that the reachability of the referent has changed
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockTable.java 91 FileLockReference(FileLock referent,
94 super(referent, queue);
  /libcore/ojluni/src/main/java/java/io/
ObjectStreamClass.java 2204 Class<?> referent; local
2350 Object referent = get(); local
    [all...]
  /external/dng_sdk/source/
dng_auto_ptr.h 51 /// Construct an AutoPtr with no referent.
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
SharedObject.java 26 * but the reference counter is still used to see whether the referent is the sole owner.
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
SharedObject.java 25 * but the reference counter is still used to see whether the referent is the sole owner.
  /art/patchoat/
patchoat.cc 678 mirror::Object* referent = obj->GetFieldObject<mirror::Object, kVerifyNone>(off); local
679 mirror::Object* moved_object = patcher_->RelocatedAddressOfPointer(referent);
686 mirror::Object* referent = ref->GetReferent(); local
687 DCHECK(referent == nullptr ||
688 Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(referent)) << referent;
689 mirror::Object* moved_object = patcher_->RelocatedAddressOfPointer(referent);
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 126 // The alias will use the linkage of the referent. If we can't
149 // Find the referent. Some aliases might require a bitcast, in
  /art/runtime/mirror/
object.cc 60 // Copy java.lang.ref.Reference.referent which isn't visited in
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 1673 final V referent; field in class:LocalCache.StrongValueReference
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
managers.py 777 Get a copy of the value of the referent
803 # tell manager this process no longer cares about referent
852 Return representation of the referent (or a fall-back if that fails)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
managers.py 777 Get a copy of the value of the referent
803 # tell manager this process no longer cares about referent
852 Return representation of the referent (or a fall-back if that fails)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 777 Get a copy of the value of the referent
803 # tell manager this process no longer cares about referent
852 Return representation of the referent (or a fall-back if that fails)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 777 Get a copy of the value of the referent
803 # tell manager this process no longer cares about referent
852 Return representation of the referent (or a fall-back if that fails)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 1765 final V referent; field in class:MapMakerInternalMap.StrongValueReference
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mbarrier.go 24 // Shade indicates that it has seen a white pointer by adding the referent
  /prebuilts/go/linux-x86/src/runtime/
mbarrier.go 24 // Shade indicates that it has seen a white pointer by adding the referent
  /art/runtime/gc/collector/
mark_compact.cc 544 // Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been

Completed in 1438 milliseconds

12 3 4 5 6