HomeSort by relevance Sort by last modified time
    Searched refs:Reference (Results 26 - 50 of 378) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction20bc.java 39 import org.jf.dexlib2.iface.reference.Reference;
48 @Nonnull protected final Reference reference; field in class:BuilderInstruction20bc
52 @Nonnull Reference reference) {
55 this.reference = reference;
59 @Nonnull @Override public Reference getReference() { return reference; }
    [all...]
BuilderInstruction22c.java 38 import org.jf.dexlib2.iface.reference.Reference;
48 @Nonnull protected final Reference reference; field in class:BuilderInstruction22c
53 @Nonnull Reference reference) {
57 this.reference = reference;
62 @Nonnull @Override public Reference getReference() { return reference; }
    [all...]
BuilderInstruction3rc.java 38 import org.jf.dexlib2.iface.reference.Reference;
49 @Nonnull protected final Reference reference; field in class:BuilderInstruction3rc
54 @Nonnull Reference reference) {
58 this.reference = reference;
63 @Nonnull @Override public Reference getReference() { return reference; }
    [all...]
BuilderInstruction35c.java 38 import org.jf.dexlib2.iface.reference.Reference;
52 @Nonnull protected final Reference reference; field in class:BuilderInstruction35c
61 @Nonnull Reference reference) {
69 this.reference = reference;
78 @Nonnull @Override public Reference getReference() { return reference; }
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
StringReference.java 32 package org.jf.dexlib2.iface.reference;
38 * This class represents a reference to an arbitrary string.
41 * used in those cases where a generic Reference is needed
47 public interface StringReference extends Reference, CharSequence, Comparable<CharSequence> {
TypeReference.java 32 package org.jf.dexlib2.iface.reference;
38 * This class represents a reference to a type.
41 * in those cases where a generic Reference is needed
50 public interface TypeReference extends Reference, CharSequence, Comparable<CharSequence> {
FieldReference.java 32 package org.jf.dexlib2.iface.reference;
38 * This class represents a reference to a field.
40 public interface FieldReference extends Reference, Comparable<FieldReference> {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableReference.java 32 package org.jf.dexlib2.immutable.reference;
35 import org.jf.dexlib2.iface.reference.*;
40 public interface ImmutableReference extends Reference {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
facade_iterator_category.hpp 56 // nested ::reference type.
58 template <class ValueParam, class Reference>
62 is_const<Reference>
63 , boost::detail::indirect_traits::is_reference_to_const<Reference>
74 // and ::reference type to an appropriate old-style category.
83 // 1. Reference is a reference to non-const
84 // 2. Reference is not a reference and is convertible to Value
86 template <class Traversal, class ValueParam, class Reference>
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
MetricsLoggerServiceTest.java 23 import static android.net.ConnectivityMetricsEvent.Reference;
71 Reference r = new Reference(0);
79 Reference r = new Reference(0);
93 Reference r = new Reference(0);
105 Reference r = new Reference(0);
123 Reference r1 = new Reference(0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 6 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
36 final List<Reference> includedBy = finder.getIncludedBy(file);
39 for (final Reference reference : includedBy) {
40 String title = reference.getDisplayName();
41 IAction action = new ShowWithinAction(title, reference);
58 private Reference mReference;
60 public ShowWithinAction(String title, Reference reference) {
62 mReference = reference;
    [all...]
  /art/runtime/gc/
reference_queue.cc 24 #include "mirror/reference-inl.h"
32 void ReferenceQueue::AtomicEnqueueIfNotEnqueued(Thread* self, mirror::Reference* ref) {
40 void ReferenceQueue::EnqueueReference(mirror::Reference* ref) {
44 // 1 element cyclic queue, ie: Reference ref = ..; ref.pendingNext = ref;
47 mirror::Reference* head = list_->GetPendingNext();
51 // Add the reference in the middle to preserve the cycle.
55 mirror::Reference* ReferenceQueue::DequeuePendingReference() {
57 mirror::Reference* ref = list_->GetPendingNext();
64 mirror::Reference* next = ref->GetPendingNext();
86 // In ConcurrentCopying::ProcessMarkStackRef() we may leave a black or white Reference in th
    [all...]
reference_processor.h 34 class Reference;
54 // The slow path bool is contained in the reference class object, can only be set once
60 mirror::Object* GetReferent(Thread* self, mirror::Reference* reference)
63 void DelayReferenceReferent(mirror::Class* klass, mirror::Reference* ref,
68 // Make a circular list with reference if it is not enqueued. Uses the finalizer queue lock.
69 bool MakeCircularListIfUnenqueued(mirror::FinalizerReference* reference)
90 // Condition that people wait on if they attempt to get the referent of a reference while
93 // Reference queues used by the GC.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction21c.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
53 public Reference getReference() {
DexBackedInstruction31c.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
53 public Reference getReference() {
DexBackedInstruction3rc.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
60 public Reference getReference() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DexBackedReference.java 32 package org.jf.dexlib2.dexbacked.reference;
36 import org.jf.dexlib2.iface.reference.Reference;
42 public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int referenceIndex) {
53 throw new ExceptionWithContext("Invalid reference type: %d", referenceType);
  /frameworks/base/core/java/android/net/
IConnectivityMetricsLogger.aidl 34 * @param reference of the last event previously returned. The function will return
37 * After the function call it will contain reference of the last event.
39 ConnectivityMetricsEvent[] getEvents(inout ConnectivityMetricsEvent.Reference reference);
  /frameworks/base/tools/aapt2/proto/
ProtoHelpers.h 44 pb::Reference_Type serializeReferenceTypeToPb(Reference::Type type);
45 Reference::Type deserializeReferenceTypeFromPb(pb::Reference_Type pbType);
ProtoHelpers.cpp 95 pb::Reference_Type serializeReferenceTypeToPb(Reference::Type type) {
97 case Reference::Type::kResource: return pb::Reference_Type_Ref;
98 case Reference::Type::kAttribute: return pb::Reference_Type_Attr;
104 Reference::Type deserializeReferenceTypeFromPb(pb::Reference_Type pbType) {
106 case pb::Reference_Type_Ref: return Reference::Type::kResource;
107 case pb::Reference_Type_Attr: return Reference::Type::kAttribute;
110 return Reference::Type::kResource;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 97 , class Reference
103 CategoryOrTraversal, ValueParam, Reference
110 boost::detail::iterator_writability_disabled<ValueParam,Reference>
128 iterator<iterator_category, value_type, Difference, pointer, Reference>
133 // iterators whose dereference operators reference the same value
148 // Returning a mutable reference allows nonsense like
220 template <class Reference, class Value>
223 static Reference r;
238 template <class Reference, class Value>
241 is_non_proxy_reference_impl<Reference, Value>::valu
345 typedef typename Iterator::reference reference; typedef in class:boost::detail::operator_brackets_proxy
630 typedef Reference reference; typedef in class:boost::iterator_facade
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleCache.java 11 import java.lang.ref.Reference;
24 private volatile Reference<Map<K, V>> cacheRef = null;
45 Reference<Map<K, V>> ref = cacheRef;
56 Reference<Map<K, V>> ref = cacheRef;
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
SimpleCache.java 10 import java.lang.ref.Reference;
20 private Reference<Map<K, V>> cacheRef = null;
41 Reference<Map<K, V>> ref = cacheRef;
52 Reference<Map<K, V>> ref = cacheRef;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleCache.java 10 import java.lang.ref.Reference;
20 private volatile Reference<Map<K, V>> cacheRef = null;
41 Reference<Map<K, V>> ref = cacheRef;
52 Reference<Map<K, V>> ref = cacheRef;
  /libcore/ojluni/src/main/java/java/lang/ref/
SoftReference.java 30 * Soft reference objects, which are cleared at the discretion of the garbage
40 * reference queues.
45 * time at which a soft reference will be cleared or the order in which a set
54 * soft reference and growing the heap.
56 * <p>The lack of information on the value to your application of each reference
68 public class SoftReference<T> extends Reference<T> {
83 * Creates a new soft reference that refers to the given object. The new
84 * reference is not registered with any queue.
86 * @param referent object the new soft reference will refer to
94 * Creates a new soft reference that refers to the given object and i
    [all...]

Completed in 1210 milliseconds

12 3 4 5 6 7 8 91011>>