Home
last modified time | relevance | path

Searched refs:referent (Results 1 – 19 of 19) sorted by relevance

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DPayloadAlignmentTest.java110 Instruction31t referent = (Instruction31t)instructions.get(0); in testPayloadAlignmentRemoveNopWithReferent() local
111 Assert.assertEquals(6, referent.getCodeOffset()); in testPayloadAlignmentRemoveNopWithReferent()
138 Instruction31t referent = (Instruction31t)instructions.get(0); in testPayloadAlignmentAddNopWithReferent() local
139 Assert.assertEquals(8, referent.getCodeOffset()); in testPayloadAlignmentAddNopWithReferent()
197 OffsetInstruction referent = (OffsetInstruction)instructions.get(7); in testPackedSwitchAlignment() local
198 Assert.assertEquals(-14, referent.getCodeOffset()); in testPackedSwitchAlignment()
248 OffsetInstruction referent = (OffsetInstruction)instructions.get(7); in testSparseSwitchAlignment() local
249 Assert.assertEquals(-18, referent.getCodeOffset()); in testSparseSwitchAlignment()
/external/guava/guava/src/com/google/common/base/
DFinalizableWeakReference.java38 protected FinalizableWeakReference(T referent, FinalizableReferenceQueue queue) { in FinalizableWeakReference() argument
39 super(referent, queue.queue); in FinalizableWeakReference()
DFinalizablePhantomReference.java40 protected FinalizablePhantomReference(T referent, FinalizableReferenceQueue queue) { in FinalizablePhantomReference() argument
41 super(referent, queue.queue); in FinalizablePhantomReference()
DFinalizableSoftReference.java38 protected FinalizableSoftReference(T referent, FinalizableReferenceQueue queue) { in FinalizableSoftReference() argument
39 super(referent, queue.queue); in FinalizableSoftReference()
/external/python/cpython2/Doc/library/
Dweakref.rst24 In the following, the term :dfn:`referent` means the object which is referred to
28 only remaining references to a referent are weak references,
29 :term:`garbage collection` is free to destroy the referent and reuse its memory
88 calling the reference object if the referent is still alive; if the referent is
93 parameter to the callback; the referent will no longer be available.
110 referents (regardless of the *callback*). If either referent has been deleted,
124 callable. Proxy objects are not :term:`hashable` regardless of the referent; this
258 Weak reference objects have no attributes or methods, but do allow the referent
271 If the referent no longer exists, calling the reference object returns
285 # referent has been garbage collected
[all …]
Dmultiprocessing.rst1548 ``'_'`` will be an attribute of the proxy and not an attribute of the referent:
1654 in a different process. The shared object is said to be the *referent* of the
1655 proxy. Multiple proxy objects may have the same referent.
1657 A proxy object has methods which invoke corresponding methods of its referent
1658 (although not every method of the referent will necessarily be available through
1660 referent can:
1677 the referent, whereas applying :func:`repr` will return the representation of
1682 corresponding manager's process then unpickling it will produce the referent
1689 >>> a.append(b) # referent of a now contains referent of b
1706 One should just use a copy of the referent instead when making comparisons.
[all …]
Dexceptions.rst277 :func:`weakref.proxy` function, is used to access an attribute of the referent
/external/desugar/java/com/google/devtools/build/android/desugar/runtime/
DThrowableExtension.java309 public WeakKey(Throwable referent, ReferenceQueue<Throwable> q) { in WeakKey() argument
310 super(referent, q); in WeakKey()
311 if (referent == null) { in WeakKey()
314 hash = System.identityHashCode(referent); in WeakKey()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java515 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, codeAddres…
531 return referent.addNewLabel();
541 …MethodLocation referent = instructionList.get(mapCodeAddressToIndex(codeAddressToIndex, codeAddres…
544 referent.getLabels().add(label);
/external/emma/core/java12/com/vladium/util/
DSoftValueMap.java430 IndexedSoftReference (final Object referent, ReferenceQueue queue, final int bucketIndex) in IndexedSoftReference() argument
432 super (referent, queue); in IndexedSoftReference()
/external/guava/guava/src/com/google/common/util/concurrent/
DStriped.java398 ArrayReference(L referent, int index, ReferenceQueue<L> queue) {
399 super(referent, queue);
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py165 referent = self.component_info_map.get(referent_name)
166 if referent is None:
173 visit_component_info(referent, current_stack, current_set)
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java1582 WeakValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry) { in WeakValueReference() argument
1583 super(referent, queue); in WeakValueReference()
1629 SoftValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry) { in SoftValueReference() argument
1630 super(referent, queue); in SoftValueReference()
1673 final V referent; field in LocalCache.StrongValueReference
1675 StrongValueReference(V referent) { in StrongValueReference() argument
1676 this.referent = referent; in StrongValueReference()
1681 return referent; in get()
1725 WeightedWeakValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry, in WeightedWeakValueReference() argument
1727 super(queue, referent, entry); in WeightedWeakValueReference()
[all …]
/external/python/cpython2/Doc/c-api/
Dweakref.rst65 Return the referenced object from a weak reference, *ref*. If the referent is
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java1690 WeakValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry) { in WeakValueReference() argument
1691 super(referent, queue); in WeakValueReference()
1729 SoftValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry) { in SoftValueReference() argument
1730 super(referent, queue); in SoftValueReference()
1765 final V referent; field in MapMakerInternalMap.StrongValueReference
1767 StrongValueReference(V referent) { in StrongValueReference() argument
1768 this.referent = referent; in StrongValueReference()
1773 return referent; in get()
/external/python/cpython2/Modules/
Dgc_weakref.txt42 materializing a strong reference to that weakref's CT referent, and so
100 referent. The same bad kinds of things can happen then.]
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/python/cpython2/Misc/
DNEWS9665 holds the last (strong) reference to its referent.
DHISTORY3099 creation for a new weakref object for a referent which already