/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
ref.tex | 54 \chapter{Reference}
|
/external/chromium-trace/catapult/catapult_base/catapult_base/refactor/annotated_symbol/ |
reference.py | 14 'Reference', 18 class Reference(base_symbol.AnnotatedSymbol): 44 super(Reference, self).__init__(-1, children)
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/ |
Reference.java | 32 package org.jf.dexlib2.iface.reference; 38 public interface Reference {
|
/libcore/ojluni/src/main/java/java/lang/ref/ |
Reference.java | 31 * Abstract base class for reference objects. This class defines the 32 * operations common to all reference objects. Because reference objects are 40 public abstract class Reference<T> { 50 * Slow path flag for the reference processor. 51 * Used by the reference processor to determine whether or not the referent 61 * This field forms a singly-linked list of reference objects that have 63 * reference has been enqueued. After this reference has been enqueued and 65 * to the next reference on the queue. The last reference on a queu [all...] |
/frameworks/base/core/java/android/net/ |
ConnectivityMetricsEvent.java | 86 public final static class Reference implements Parcelable { 90 public Reference(long ref) { 95 public static final Parcelable.Creator<Reference> CREATOR 96 = new Parcelable.Creator<Reference> (){ 97 public Reference createFromParcel(Parcel source) { 98 return new Reference(source.readLong()); 101 public Reference[] newArray(int size) { 102 return new Reference[size];
|
/art/runtime/mirror/ |
reference.h | 42 // C++ mirror of java.lang.ref.Reference 43 class MANAGED Reference : public Object { 45 // Size of java.lang.ref.Reference.class. 48 // Size of an instance of java.lang.ref.Reference. 50 return sizeof(Reference); 54 return OFFSET_OF_OBJECT_MEMBER(Reference, pending_next_); 57 return OFFSET_OF_OBJECT_MEMBER(Reference, queue_); 60 return OFFSET_OF_OBJECT_MEMBER(Reference, queue_next_); 63 return OFFSET_OF_OBJECT_MEMBER(Reference, referent_); 79 Reference* GetPendingNext() SHARED_REQUIRES(Locks::mutator_lock_) [all...] |
/frameworks/base/tools/aapt2/ |
ResourceValues.cpp | 67 Reference::Reference() : referenceType(Reference::Type::kResource) { 70 Reference::Reference(const ResourceNameRef& n, Type t) : 74 Reference::Reference(const ResourceId& i, Type type) : id(i), referenceType(type) { 77 bool Reference::equals(const Value* value) const { 78 const Reference* other = valueCast<Reference>(value) [all...] |
ResourceValues.h | 156 * A reference to another resource. This maps to android::Res_value::TYPE_REFERENCE. 158 * A reference can be symbolic (with the name set to a valid resource name) or be 161 struct Reference : public BaseItem<Reference> { 169 Reference::Type referenceType; 172 Reference(); 173 explicit Reference(const ResourceNameRef& n, Type type = Type::kResource); 174 explicit Reference(const ResourceId& i, Type type = Type::kResource); 178 Reference* clone(StringPool* newPool) const override; 266 Reference symbol [all...] |
/external/google-breakpad/src/common/ |
test_assembler.h | 171 // reference counted, allowing labels to be lightweight, copyable, 179 // Increment our reference count. 181 // Decrement our reference count, and return true if it is zero. 228 // unconstrained binding, that doesn't count as a reference.) 290 // end of this section. Return a reference to this section. 301 // reference to this section. 309 // bytes. Return a reference to this section. 340 // endianness. Return a reference to this section. 406 // ALIGNMENT must be a power of two. Return a reference to this 428 // functions like Append and D32 would return a reference to th [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
SharedObject.java | 20 * Base class for shared, reference-counted, auto-deleted objects. 24 * In Java, memory management (deletion after last reference is gone) 26 * but the reference counter is still used to see whether the referent is the sole owner. 34 * // Either use the nest class Reference (which costs an extra allocation), 40 * private SharedObject.Reference<S> s; 89 * Sharing requires reference-counting. 99 public static final class Reference<T extends SharedObject> implements Cloneable { 102 public Reference(T r) { 111 public Reference<T> clone() { 112 Reference<T> c [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
SharedObject.java | 19 * Base class for shared, reference-counted, auto-deleted objects. 23 * In Java, memory management (deletion after last reference is gone) 25 * but the reference counter is still used to see whether the referent is the sole owner. 33 * // Either use the nest class Reference (which costs an extra allocation), 39 * private SharedObject.Reference<S> s; 88 * Sharing requires reference-counting. 97 public static final class Reference<T extends SharedObject> implements Cloneable { 100 public Reference(T r) { 109 public Reference<T> clone() { 110 Reference<T> c [all...] |
/external/clang/test/SemaCXX/ |
ast-print.cpp | 10 struct Reference 17 Reference r;
|
/external/clang/test/SemaTemplate/ |
constexpr-instantiate.cpp | 69 namespace Reference { 80 // We follow g++ in treating any reference to a constexpr function template
|
/external/llvm/lib/Target/SystemZ/ |
SystemZElimCompare.cpp | 38 struct Reference { 39 Reference() 42 Reference &operator|=(const Reference &Other) { 70 Reference getRegReferences(MachineInstr *MI, unsigned Reg); 129 Reference SystemZElimCompare::getRegReferences(MachineInstr *MI, unsigned Reg) { 130 Reference Ref; 344 Reference CCRefs; 345 Reference SrcRefs;
|
/external/v8/src/ |
address-map.h | 82 static BackReference Reference(AllocationSpace space, uint32_t chunk_index, 116 uint32_t reference() const { function in class:v8::internal::BackReference
|
/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/clang/unittests/ASTMatchers/ |
ASTMatchersTest.cpp | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
IncludeFinder.java | 167 public List<Reference> getIncludedBy(IResource included) { 179 List<Reference> references = new ArrayList<Reference>(result.size()); 181 references.add(new Reference(mProject, s)); 956 String reference = mId; local 1076 Reference reference = queue.removeFirst(); local [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
document.h | 133 //! Reference to (const) GenericMember
134 typedef typename BaseType::reference Reference;
191 Reference operator*() const { return *ptr_; }
193 Reference operator[](DifferenceType n) const { return ptr_[n]; }
231 //! Reference to a constant string (not taking a copy)
262 //! Create string reference from \c const character array
264 This constructor implicitly creates a constant string reference from
289 //! Explicitly create string reference from \c const character pointer
291 This constructor can be used to \b explicitly create a reference to [all...] |
/external/clang/include/clang/Sema/ |
DeclSpec.h | [all...] |
/external/clang/lib/Sema/ |
SemaType.cpp | 336 case DeclaratorChunk::Reference: 349 case DeclaratorChunk::Reference: 428 case DeclaratorChunk::Reference: 458 case DeclaratorChunk::Reference: 521 case DeclaratorChunk::Reference: [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar | |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar | |
/prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.5.0/ |
chartlib-24.5.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.0.0/ |
chartlib-25.0.0.jar | |