/frameworks/base/tools/aapt2/xml/ |
XmlUtil.cpp | 67 Reference* in_ref) { 75 // If the reference was already private (with a * prefix) and the 77 // we keep the reference private.
|
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_common.i | 50 template <class Iterator, class Category,class T, class Reference, class Pointer, class Distance> 51 struct iterator_traits<__reverse_bi_iterator<Iterator,Category,T,Reference,Pointer,Distance> > {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mach-o/ |
symbols-4.s | 0 # Reference & dead strip permutations. 5 .reference ua 8 .reference ua1 15 .reference c 20 .reference c1 27 .reference e 34 .reference g 41 .reference g1
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/ |
rel-1.s | 2 ! strange. Reference from same and other file to .text and .data in
|
/frameworks/base/tools/aapt2/flatten/ |
TableFlattener.cpp | 88 Reference key = Reference(ResourceId(ResTable_map::ATTR_TYPE)); 94 Reference key = Reference(ResourceId(ResTable_map::ATTR_MIN)); 101 Reference key = Reference(ResourceId(ResTable_map::ATTR_MAX)); 115 const Reference& parent_ref = style->parent.value(); 182 Reference key(q); 196 void FlattenKey(Reference* key, ResTable_map* out_entry) { 205 void FlattenEntry(Reference* key, Item* value) [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...] |
/frameworks/base/tools/aapt2/link/ |
TableMerger_test.cpp | 346 std::vector<Reference> expected_refs = { 347 Reference(test::ParseNameOrDie("com.app.a:attr/bar")), 348 Reference(test::ParseNameOrDie("com.app.a:attr/bat")), 349 Reference(test::ParseNameOrDie("com.app.a:attr/foo"), ResourceId(0x01010000)), 356 std::vector<Reference> extracted_refs; 365 Eq(make_value(Reference(test::ParseNameOrDie("com.app.a:style/OverlayParent")))));
|
XmlReferenceLinker.cpp | 49 void Visit(Reference* ref) override { 106 Reference attr_ref(ResourceNameRef(attribute_package, ResourceType::kAttr, attr.name)); 126 // With a compiledValue, we must resolve the reference and assign it an ID.
|
ReferenceLinker_test.cpp | 32 // Test use of local reference (w/o package name). 56 Reference* ref = test::GetValue<Reference>(table.get(), "com.app.test:string/foo"); 61 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/bar"); 66 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/baz");
|
/art/runtime/gc/collector/ |
garbage_collector.h | 37 class Reference; 192 // Returns true if the given heap reference is null or is already marked. If it's already marked, 193 // update the reference (uses a CAS if do_atomic_update is true. Otherwise, returns false. 197 // Used by reference processor. 206 ObjPtr<mirror::Reference> reference)
|
/art/runtime/gc/ |
reference_queue_test.cc | 34 Mutex lock("Reference queue lock"); 53 std::set<mirror::Reference*> refs = {ref1.Get(), ref2.Get()}; 54 std::set<mirror::Reference*> dequeued; 68 Mutex lock("Reference queue lock");
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
AbstractConnPool.java | 34 import java.lang.ref.Reference; 89 * A reference queue to track loss of pool entries to GC. 200 public void handleReference(Reference ref) {
|
/external/emma/ant/ant14/com/vladium/emma/instr/ |
instrTask.java | 16 import org.apache.tools.ant.types.Reference; 92 public void setInstrpathRef (final Reference ref)
|
/external/flatbuffers/docs/source/ |
README_TO_GENERATE_DOCS.md | 30 *Note: The Go API Reference code must be generated ahead of time. For
|
/external/guava/guava/src/com/google/common/base/ |
FinalizableReferenceQueue.java | 25 import java.lang.ref.Reference; 36 * A reference queue with an associated background thread that dequeues references and invokes 39 * <p>Keep a strong reference to this object until all of the associated referents have been 54 * private static final Set<Reference<?>> references = Sets.newConcurrentHashSet(); 68 * Reference<?> reference = new FinalizablePhantomReference<MyServer>(myServer, frq) { 81 * references.add(reference); 96 * The Finalizer thread keeps a phantom reference to this object. When the client (for example, a 97 * map built by MapMaker) no longer has a strong reference to this object, the garbage collector 98 * will reclaim it and enqueue the phantom reference. The enqueued reference will trigger th 192 Reference<?> reference; local [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/ |
InstructionRewriter.java | 39 import org.jf.dexlib2.iface.reference.FieldReference; 40 import org.jf.dexlib2.iface.reference.MethodReference; 41 import org.jf.dexlib2.iface.reference.Reference; 42 import org.jf.dexlib2.iface.reference.TypeReference; 83 @Override @Nonnull public Reference getReference() {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
ReferenceUtil.java | 34 import org.jf.dexlib2.iface.reference.*; 133 public static String getReferenceString(@Nonnull Reference reference) { 134 return getReferenceString(reference, null); 138 public static String getReferenceString(@Nonnull Reference reference, @Nullable String containingClass) { 139 if (reference instanceof StringReference) { 140 return String.format("\"%s\"", StringUtils.escapeString(((StringReference)reference).getString())); 142 if (reference instanceof TypeReference) { 143 return ((TypeReference)reference).getType() [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
InstructionFactory.java | 38 import org.jf.dexlib2.iface.reference.Reference; 44 public interface InstructionFactory<Ref extends Reference> { 50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); 52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); 58 Instruction makeInstruction22c(@Nonnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference); 64 Instruction makeInstruction31c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); 69 int registerF, int registerG, @Nonnull Ref reference); 71 @Nonnull Ref reference);
|
/frameworks/base/tools/aapt2/ |
ValueVisitor.h | 34 virtual void Visit(Reference* value) { VisitItem(value); } 97 for (Reference& reference : styleable->entries) { 98 Visit(&reference);
|
/frameworks/base/tools/aapt2/proto/ |
TableProtoDeserializer.cpp | 40 void Visit(Reference* reference) override { 41 if (!reference->id || !reference->id.value().is_valid()) { 45 ResourceId id = reference->id.value(); 48 reference->name = cache_iter->second.ToResourceName(); 167 const pb::Reference& pb_ref = pb_item.ref(); 168 std::unique_ptr<Reference> ref = util::make_unique<Reference>(); 258 style->parent = Reference(); [all...] |
/frameworks/base/tools/aapt2/test/ |
Common.h | 124 template std::ostream& operator<<<Reference>(std::ostream&, const Reference&);
|
/external/clang/include/clang/Index/ |
IndexSymbol.h | 77 Reference = 1 << 2,
|
/external/emma/ant/ant14/com/vladium/emma/ |
emmajavaTask.java | 31 import org.apache.tools.ant.types.Reference; 272 public void setClasspathRef (final Reference ref) 365 public final void setLibclasspathRef (final Reference ref) 457 public final void setSourcepathRef (final Reference ref)
|
/external/google-breakpad/src/common/ |
test_assembler.cc | 149 // completely unconstrained or a constant, never a reference to 176 // reference-counting rules call for acquiring first, and then 177 // releasing: the self-reference assertion above should have 188 // Recurse to find the end of our reference chain (the root of our 239 references_.push_back(Reference(contents_.size(), endianness, size, label)); 296 for (vector<Reference>::const_iterator it = section.references_.begin(); 298 references_.push_back(Reference(base + it->offset, it->endianness, 339 // For each label reference, find the label's value, and patch it into 342 Reference &r = references_[i];
|
/external/llvm/tools/llvm-pdbdump/ |
TypedefDumper.cpp | 63 Pointer = FunctionDumper::PointerType::Reference;
|