HomeSort by relevance Sort by last modified time
    Searched defs:Reference (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium-trace/catapult/common/py_utils/py_utils/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 33 * Abstract base class for reference objects. This class defines the
34 * operations common to all reference objects. Because reference objects are
42 public abstract class Reference<T> {
52 * Slow path flag for the reference processor.
53 * Used by the reference processor to determine whether or not the referent
63 * This field forms a singly-linked list of reference objects that have
65 * reference has been enqueued. After this reference has been enqueued and
67 * to the next reference on the queue. The last reference on a queu
    [all...]
  /art/runtime/mirror/
reference.h 44 // C++ mirror of java.lang.ref.Reference
45 class MANAGED Reference : public Object {
47 // Size of java.lang.ref.Reference.class.
50 // Size of an instance of java.lang.ref.Reference.
52 return sizeof(Reference);
56 return OFFSET_OF_OBJECT_MEMBER(Reference, pending_next_);
59 return OFFSET_OF_OBJECT_MEMBER(Reference, queue_);
62 return OFFSET_OF_OBJECT_MEMBER(Reference, queue_next_);
65 return OFFSET_OF_OBJECT_MEMBER(Reference, referent_);
80 Reference* GetPendingNext() REQUIRES_SHARED(Locks::mutator_lock_)
    [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 22 * Base class for shared, reference-counted, auto-deleted objects.
26 * In Java, memory management (deletion after last reference is gone)
28 * but the reference counter is still used to see whether the referent is the sole owner.
36 * // Either use the nest class Reference (which costs an extra allocation),
42 * private SharedObject.Reference&lt;S&gt; s;
91 * Sharing requires reference-counting.
101 public static final class Reference<T extends SharedObject> implements Cloneable {
104 public Reference(T r) {
113 public Reference<T> clone() {
114 Reference<T> c
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
SharedObject.java 21 * Base class for shared, reference-counted, auto-deleted objects.
25 * In Java, memory management (deletion after last reference is gone)
27 * but the reference counter is still used to see whether the referent is the sole owner.
35 * // Either use the nest class Reference (which costs an extra allocation),
41 * private SharedObject.Reference&lt;S&gt; s;
90 * 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/libchrome/base/metrics/
persistent_memory_allocator.h 52 typedef uint32_t Reference;
57 // reference will not be returned twice.
71 // As above but resuming from the |starting_after| reference. The first call
72 // to GetNext() will return the next object found after that reference. The
73 // reference must be to an "iterable" object; references to non-iterable
77 Reference starting_after);
80 // return value is a reference to the allocation inside the allocator or
83 Reference GetNext(uint32_t* type_return);
89 Reference GetNextOfType(uint32_t type_match);
95 // fetched. Non-const objects can be fetched using the reference on
    [all...]
persistent_memory_allocator_unittest.cc 33 typedef PersistentMemoryAllocator::Reference Reference;
110 Reference block1 = allocator_->Allocate(sizeof(TestObject1), 1);
133 Reference block2 = allocator_->Allocate(sizeof(TestObject2), 2);
230 Reference block1 = allocator_->Allocate(TEST_MEMORY_PAGE / 2, 1);
235 Reference block2 =
240 Reference block3 = allocator_->Allocate(2 * kAllocAlignment + 99, 3);
261 Reference block = allocator_.Allocate(size, type);
377 Reference block = allocator_->Allocate(size, type);
477 Reference block1 = allocator_->Allocate(sizeof(TestObject1), 1)
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 74 Reference::Reference() : reference_type(Type::kResource) {}
76 Reference::Reference(const ResourceNameRef& n, Type t)
79 Reference::Reference(const ResourceId& i, Type type)
82 Reference::Reference(const ResourceNameRef& n, const ResourceId& i)
85 bool Reference::Equals(const Value* value) const {
86 const Reference* other = ValueCast<Reference>(value)
    [all...]
ResourceValues.h 117 // A reference to another resource. This maps to android::Res_value::TYPE_REFERENCE.
118 // A reference can be symbolic (with the name set to a valid resource name) or be
120 struct Reference : public BaseItem<Reference> {
128 Reference::Type reference_type;
131 Reference();
132 explicit Reference(const ResourceNameRef& n, Type type = Type::kResource);
133 explicit Reference(const ResourceId& i, Type type = Type::kResource);
134 Reference(const ResourceNameRef& n, const ResourceId& i);
138 Reference* Clone(StringPool* new_pool) const override
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 53 // An ES6 module reference.
56 // can reference other modules, either importing symbols from them, or exporting
155 JsModuleReference Reference = References[Indices[i]];
156 if (appendReference(ReferencesText, Reference))
163 if (!Reference.IsExport &&
164 (Reference.IsExport != References[Indices[i + 1]].IsExport ||
165 Reference.Category != References[Indices[i + 1]].Category))
239 // Appends ``Reference`` to ``Buffer``, returning true if text within the
240 // ``Reference`` changed (e.g. symbol order).
241 bool appendReference(std::string &Buffer, JsModuleReference &Reference) {
    [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/clang/unittests/ASTMatchers/
ASTMatchersNodeTest.cpp 356 StatementMatcher Reference =
369 "}", Reference));
378 "}", Reference));
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 37 struct Reference {
38 Reference()
41 Reference &operator|=(const Reference &Other) {
73 Reference getRegReferences(MachineInstr &MI, unsigned Reg);
130 Reference SystemZElimCompare::getRegReferences(MachineInstr &MI, unsigned Reg) {
131 Reference Ref;
343 Reference CCRefs;
344 Reference SrcRefs;
  /external/clang/include/clang/Index/
IndexSymbol.h 77 Reference = 1 << 2,
  /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...]
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 30 class Reference;
240 Reference operator[](size_t i) const;
254 Reference operator[](size_t i) const;
278 Reference operator[](size_t i) const;
301 Reference operator[](const char *key) const;
302 Reference operator[](const std::string &key) const;
327 class Reference {
329 Reference(const uint8_t *data, uint8_t parent_width, uint8_t byte_width,
334 Reference(const uint8_t *data, uint8_t parent_width, uint8_t packed_type)
643 inline Reference Vector::operator[](size_t i) const
    [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 343 case DeclaratorChunk::Reference:
357 case DeclaratorChunk::Reference:
437 case DeclaratorChunk::Reference:
468 case DeclaratorChunk::Reference:
532 case DeclaratorChunk::Reference:
    [all...]
  /external/swiftshader/src/Reactor/
Nucleus.hpp 303 class Reference
306 explicit Reference(llvm::Value *pointer, int alignment = 1);
309 RValue<T> operator=(const Reference<T> &ref) const;
367 RValue(const Reference<T> &rhs);
397 Bool(const Reference<Bool> &rhs);
402 RValue<Bool> operator=(const Reference<Bool> &rhs) const;
425 Byte(const Reference<Byte> &rhs);
430 RValue<Byte> operator=(const Reference<Byte> &rhs) const;
481 SByte(const Reference<SByte> &rhs);
486 RValue<SByte> operator=(const Reference<SByte> &rhs) const
    [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 

Completed in 2537 milliseconds

1 2 3 4 5 6 7 8