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

1 2 3 45 6 7 8 91011>>

  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 13 import org.apache.tools.ant.types.Reference;
90 public void setSourcepathRef (final Reference ref)
  /external/guava/guava/src/com/google/common/base/internal/
Finalizer.java 20 import java.lang.ref.Reference;
38 * Google Collections, this thread would keep an indirect strong reference
63 * @param queue a reference queue that the thread will poll.
64 * @param frqReference a phantom reference to the FinalizableReferenceQueue, which will be
96 + " by reference finalizer thread.", t);
139 * Cleans up a single reference. Catches and logs all throwables.
143 private boolean cleanUp(Reference<?> reference) {
153 reference.clear();
155 if (reference == frqReference)
    [all...]
  /frameworks/base/tools/aapt2/
ValueVisitor.h 33 virtual void visit(Reference* value) { visitItem(value); }
94 for (Reference& reference : styleable->entries) {
95 visit(&reference);
ResourceUtils.cpp 188 Maybe<Reference> parseStyleParentReference(const StringPiece16& str, std::string* outError) {
198 // Skip over these identifiers. A style's parent is a normal reference.
227 err << "invalid parent reference '" << str << "'";
232 Reference result(ref);
237 std::unique_ptr<Reference> tryParseReference(const StringPiece16& str, bool* outCreate) {
241 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref);
250 return util::make_unique<Reference>(ref, Reference::Type::kAttribute);
485 std::unique_ptr<Reference> reference = tryParseReference(value, &create) local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
PhantomReferenceTest.java 21 import java.lang.ref.Reference;
94 Reference r = rq.remove(100L);
95 assertNotNull("Reference should have been enqueued.", r);
124 // need a reference to bool so the jit does not optimize it away
SoftReferenceTest.java 19 import java.lang.ref.Reference;
102 Reference ref;
  /art/runtime/gc/
reference_processor.cc 23 #include "mirror/reference-inl.h"
40 condition_("reference processor condition", *Locks::reference_processor_lock_) ,
49 mirror::Reference::GetJavaLangRefReference()->SetSlowPath(true);
53 mirror::Reference::GetJavaLangRefReference()->SetSlowPath(false);
63 mirror::Object* ReferenceProcessor::GetReferent(Thread* self, mirror::Reference* reference) {
68 mirror::Object* const referent = reference->GetReferent();
70 // scenario where it becomes non-null during the reference processing phase.
79 reference->GetReferentReferenceAddr();
96 (LIKELY(!reference->IsFinalizerReferenceInstance()) && reference->IsUnprocessed()))
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
__init__.py 9 from py_utils.refactor.annotated_symbol.reference import *
19 'Reference',
25 # https://docs.python.org/2/reference/grammar.html
45 Reference,
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 85 if (Pointer == PointerType::Reference)
145 else if (Pointer == FunctionDumper::PointerType::Reference)
168 else if (Pointer == FunctionDumper::PointerType::Reference)
240 Symbol.isReference() ? PointerType::Reference : PointerType::Pointer;
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer_test.cpp 65 // Make a reference with both resource name and resource ID.
66 // The reference should point to a resource outside of this table to test that both
68 Reference expectedRef;
73 util::make_unique<Reference>(expectedRef),
105 Reference* actualRef = test::getValue<Reference>(newTable.get(), u"@com.app.a:layout/abc");
TableProtoDeserializer.cpp 38 void visit(Reference* reference) override {
39 if (!reference->id || !reference->id.value().isValid()) {
43 ResourceId id = reference->id.value();
46 reference->name = cacheIter->second.toResourceName();
163 const pb::Reference& pbRef = pbItem.ref();
164 std::unique_ptr<Reference> ref = util::make_unique<Reference>();
254 style->parent = Reference();
    [all...]
  /frameworks/base/tools/aapt2/xml/
XmlUtil.cpp 52 const StringPiece16& localPackage, Reference* inRef) {
59 // If the reference was already private (with a * prefix) and the namespace is public,
60 // 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 85 Reference key = Reference(ResTable_map::ATTR_TYPE);
91 Reference key = Reference(ResTable_map::ATTR_MIN);
97 Reference key = Reference(ResTable_map::ATTR_MAX);
110 const Reference& parentRef = style->parent.value();
178 Reference key(q);
192 void flattenKey(Reference* key, ResTable_map* outEntry) {
202 void flattenEntry(Reference* key, Item* value)
    [all...]
  /art/runtime/gc/collector/
garbage_collector.h 37 class Reference;
192 // Used by reference processor.
199 virtual void DelayReferenceReferent(mirror::Class* klass, mirror::Reference* reference)
  /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/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&lt;Reference&lt;?>> references = Sets.newConcurrentHashSet();
68 * Reference&lt;?> reference = new FinalizablePhantomReference&lt;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/mockito/cglib-and-asm/src/org/mockito/cglib/core/
AbstractClassGenerator.java 200 Reference ref = (Reference)cache2.get(key);
  /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.*;
122 public static String getReferenceString(@Nonnull Reference reference) {
123 return getReferenceString(reference, null);
127 public static String getReferenceString(@Nonnull Reference reference, @Nullable String containingClass) {
128 if (reference instanceof StringReference) {
129 return String.format("\"%s\"", StringUtils.escapeString(((StringReference)reference).getString()));
131 if (reference instanceof TypeReference) {
132 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/link/
XmlReferenceLinker.cpp 46 void visit(Reference* ref) override {
90 Reference attrRef(ResourceNameRef(package, ResourceType::kAttr, attr.name));
135 // With a compiledValue, we must resolve the reference and assign it an ID.

Completed in 631 milliseconds

1 2 3 45 6 7 8 91011>>