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

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 58 Reference, \
69 Reference, \
80 Reference, \
91 Reference, \
101 typename Reference,
113 typedef Reference reference; typedef in class:__gnu_pbds::detail::bin_search_tree_const_it_
278 typename Reference,
318 inline typename PB_DS_TREE_CONST_IT_C_DEC::reference
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 58 Reference, \
69 Reference, \
80 Reference, \
91 Reference, \
101 typename Reference,
113 typedef Reference reference; typedef in class:__gnu_pbds::detail::bin_search_tree_const_it_
278 typename Reference,
318 inline typename PB_DS_TREE_CONST_IT_C_DEC::reference
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 58 Reference, \
69 Reference, \
80 Reference, \
91 Reference, \
101 typename Reference,
113 typedef Reference reference; typedef in class:__gnu_pbds::detail::bin_search_tree_const_it_
278 typename Reference,
318 inline typename PB_DS_TREE_CONST_IT_C_DEC::reference
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker_test.cpp 103 Reference* ref = valueCast<Reference>(xmlAttr->compiledValue.get());
187 Reference* ref = valueCast<Reference>(xmlAttr->compiledValue.get());
215 Reference* ref = valueCast<Reference>(xmlAttr->compiledValue.get());
230 ref = valueCast<Reference>(xmlAttr->compiledValue.get());
254 Reference* ref = valueCast<Reference>(xmlAttr->compiledValue.get());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationTailoring.java 35 CollationTailoring(SharedObject.Reference<CollationSettings> baseSettings) {
42 settings = new SharedObject.Reference<CollationSettings>(new CollationSettings());
100 public SharedObject.Reference<CollationSettings> settings; // reference-counted
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationTailoring.java 33 CollationTailoring(SharedObject.Reference<CollationSettings> baseSettings) {
40 settings = new SharedObject.Reference<CollationSettings>(new CollationSettings());
98 public SharedObject.Reference<CollationSettings> settings; // reference-counted
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ReferenceFormatter.java 32 import org.jf.dexlib2.iface.reference.*;
47 Reference reference) throws IOException {
50 writeStringReference(writer, ((StringReference)reference).getString());
53 writer.write(((TypeReference)reference).getType());
56 ReferenceUtil.writeMethodDescriptor(writer, (MethodReference)reference);
59 ReferenceUtil.writeFieldDescriptor(writer, (FieldReference)reference);
62 throw new IllegalStateException("Unknown reference type");
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ReferenceType.java 34 import org.jf.dexlib2.iface.reference.*;
59 public static int getReferenceType(Reference reference) {
60 if (reference instanceof StringReference) {
62 } else if (reference instanceof TypeReference) {
64 } else if (reference instanceof FieldReference) {
66 } else if (reference instanceof MethodReference) {
69 throw new IllegalStateException("Invalid reference");
74 * Validate a specific reference type. Note that the NONE placeholder is specifically not considered valid here.
88 super("Invalid reference type: %d", referenceType)
    [all...]
  /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/clang/test/SemaCXX/
ast-print.cpp 10 struct Reference
17 Reference r;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheValue.java 10 import java.lang.ref.Reference;
17 * Holds a value either via a direct reference or via a {@link Reference},
21 * If it is held via a direct reference, then it is actually immutable.
23 * <p>A {@code Reference} may be cleared (garbage-collected),
69 * Otherwise, it holds it via a {@link Reference}.
80 * Distinguishes a null value from a Reference value that has been cleared.
87 * or null if it was held in a Reference and has been cleared.
91 * If the value was held via a {@link Reference} which has been cleared,
92 * then it is replaced with a new {@link Reference} to the new value
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheValue.java 9 import java.lang.ref.Reference;
16 * Holds a value either via a direct reference or via a {@link Reference},
20 * If it is held via a direct reference, then it is actually immutable.
22 * <p>A {@code Reference} may be cleared (garbage-collected),
67 * Otherwise, it holds it via a {@link Reference}.
78 * Distinguishes a null value from a Reference value that has been cleared.
85 * or null if it was held in a Reference and has been cleared.
89 * If the value was held via a {@link Reference} which has been cleared,
90 * then it is replaced with a new {@link Reference} to the new value
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction35c.java 37 import org.jf.dexlib2.iface.reference.Reference;
38 import org.jf.dexlib2.immutable.reference.ImmutableReference;
39 import org.jf.dexlib2.immutable.reference.ImmutableReferenceFactory;
53 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction35c
62 @Nonnull Reference reference) {
70 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
94 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
  /frameworks/base/tools/aapt2/
ResourceUtils.h 52 * Returns true if the string was parsed as a reference (@[+][package:]type/name), with
53 * `outReference` set to the parsed reference.
55 * If '+' was present in the reference, `outCreate` is set to true.
56 * If '*' was present in the reference, `outPrivate` is set to true.
62 * Returns true if the string is in the form of a resource reference (@[+][package:]type/name).
67 * Returns true if the string was parsed as an attribute reference (?[package:][type/]name),
68 * with `outReference` set to the parsed reference.
73 * Returns true if the string is in the form of an attribute reference(?[package:][type/]name).
83 * Returns a Reference, or None Maybe instance if the string `str` was parsed as a
84 * valid reference to a style
    [all...]
  /frameworks/base/tools/aapt2/test/
Builders.h 59 return addValue(name, id, util::make_unique<Reference>(parseNameOrDie(ref)));
128 inline std::unique_ptr<Reference> buildReference(const StringPiece16& ref,
130 std::unique_ptr<Reference> reference = util::make_unique<Reference>(parseNameOrDie(ref)); local
131 reference->id = id;
132 return reference;
185 Reference(ResourceName{ {}, ResourceType::kId, name.toString()}),
201 mStyle->parent = Reference(parseNameOrDie(str));
206 mStyle->entries.push_back(Style::Entry{ Reference(parseNameOrDie(str)), std::move(value) })
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
token_iterator.hpp 181 typename Reference = basic_cstring<CharT const>,
184 : public input_iterator_facade<Derived,ValueType,Reference,Traversal> {
187 typedef input_iterator_facade<Derived,ValueType,Reference,Traversal> base;
341 typename Reference = ValueType const&>
343 : public token_iterator_base<range_token_iterator<Iter,CharCompare,ValueType,Reference>,
344 typename iterator_value<Iter>::type,CharCompare,ValueType,Reference> {
346 typedef token_iterator_base<range_token_iterator<Iter,CharCompare,ValueType,Reference>,
347 typename iterator_value<Iter>::type,CharCompare,ValueType,Reference> base;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceTest.java 20 import java.lang.ref.Reference;
30 volatile Reference r;
63 * java.lang.ref.Reference#clear()
81 // Must reference tmpA and tmpB so the jit does not optimize them away
86 * java.lang.ref.Reference#enqueue()
91 Reference ref = new SoftReference(obj, rq);
123 // Test the general/overall functionality of Reference.
128 Reference ref = queue.remove();
136 // wait for the reference queue thread to enqueue the newly-finalized object
152 * java.lang.ref.Reference#clear(
    [all...]
  /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;
  /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/clang/unittests/Tooling/
RecursiveASTVisitorTestExprVisitor.cpp 165 bool VisitDeclRefExpr(DeclRefExpr *Reference) {
166 Match(Reference->getNameInfo().getAsString(), Reference->getLocation());
  /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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 26 import java.lang.ref.Reference;
64 private Map<Long, Reference<ByteBuffer>> cache = new HashMap<Long, Reference<ByteBuffer>>();
68 * If the whole content is just in one mapped buffer keep a strong reference to it so it is
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorResolver.java 44 import org.jf.dexlib2.iface.reference.MethodReference;
45 import org.jf.dexlib2.iface.reference.Reference;
144 @Nonnull public final Reference accessedMember;
146 public AccessedMember(int accessedMemberType, @Nonnull Reference accessedMember) {
  /frameworks/base/tools/aapt2/process/
SymbolTable.h 95 const Symbol* findByReference(const Reference& ref);
122 virtual std::unique_ptr<SymbolTable::Symbol> findByReference(const Reference& ref) {
162 std::unique_ptr<SymbolTable::Symbol> findByReference(const Reference& ref) override;
  /art/runtime/gc/
reference_queue_test.cc 32 Mutex lock("Reference queue lock");
51 std::set<mirror::Reference*> refs = {ref1.Get(), ref2.Get()};
52 std::set<mirror::Reference*> dequeued;
66 Mutex lock("Reference queue lock");

Completed in 1472 milliseconds

1 2 34 5 6 7 8 91011>>