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

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.cpp 40 * Visitor that converts a reference's resource ID to a resource name,
55 void visit(Reference* reference) override {
56 if (!reference->id || !reference->id.value().isValid()) {
60 ResourceId id = reference->id.value();
63 reference->name = cacheIter->second;
64 reference->id = {};
425 const Reference::Type type = (value->dataType == Res_value::TYPE_REFERENCE) ?
426 Reference::Type::kResource : Reference::Type::kAttribute
    [all...]
  /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 62 Pointer = FunctionDumper::PointerType::Reference;
VariableDumper.cpp 106 Symbol.isReference() ? FunctionDumper::PointerType::Reference
163 PT = FunctionDumper::PointerType::Reference;
  /frameworks/base/tools/aapt2/link/
ReferenceLinker_test.cpp 30 // Test use of local reference (w/o package name).
50 Reference* ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/foo");
55 ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/bar");
60 ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/baz");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceQueueTest.java 21 import java.lang.ref.Reference;
161 Reference ret = rq.remove(0L);
182 Reference result = rq.remove(1L);
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 39 import java.lang.ref.Reference;
70 Preconditions.checkState(valueRef instanceof Reference);
71 Reference<V> ref = (Reference<V>) valueRef;
80 * that the given entry is a weak or soft reference, and throws an IllegalStateException if that
87 Preconditions.checkState(entry instanceof Reference);
88 Reference<?> ref = (Reference<?>) entry;
199 // cleanup and then check count after we have a strong reference to all entries
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 11 import java.lang.ref.Reference;
179 final Reference ref = entry.m_softValue;
195 final Reference ref = entry.m_softValue;
451 m_softValue = new IndexedSoftReference (value, valueReferenceQueue, bucketIndex); // ... do not retain a strong reference to the value
457 IndexedSoftReference m_softValue; // soft reference to the value [never null]
458 Object m_key; // strong reference to the key [never null]
490 IndexedSoftReference ref = entry.m_softValue; // get the soft value reference
492 Object entryValue = ref.get (); // convert the soft reference to a local strong one
497 // [assertion: 'softValue' couldn't have been enqueued already and can't be enqueued until strong reference in 'entryKey' is nulled out]
546 next: for (Reference _ref; (_ref = m_valueReferenceQueue.poll ()) != null;
    [all...]
  /frameworks/base/core/java/android/net/
ConnectivityMetricsLogger.java 152 * @param reference of the last event previously returned. The function will return
155 * After the function call it will contain reference of the
159 public ConnectivityMetricsEvent[] getEvents(ConnectivityMetricsEvent.Reference reference) {
161 return mService.getEvents(reference);
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 49 void visit(Reference* ref) override {
122 for (Reference& entry : styleable->entries) {
178 void serializeReferenceToPb(const Reference& ref, pb::Reference* pbRef) {
  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 22 public final class FinalizerReference<T> extends Reference<T> {
54 FinalizerReference<?> reference = new FinalizerReference<Object>(referent, queue); local
56 reference.prev = null;
57 reference.next = head;
59 head.prev = reference;
61 head = reference;
65 public static void remove(FinalizerReference<?> reference) {
67 FinalizerReference<?> next = reference.next;
68 FinalizerReference<?> prev = reference.prev;
69 reference.next = null
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/proto/
xref.proto 22 // This proto represents a very preliminary attempt to define a cross-reference
28 // cross-reference relationships. What constitutes a "Cross-reference" is not
317 // If true, return reference edges whose source nodes are located in the
322 // reference target in the DecorationsReply.
340 // Represents a reference edge source ---KIND---> target. Each source is an
342 message Reference {
359 // The reference edges located in the specified window.
360 repeated Reference reference = 4
    [all...]
  /art/patchoat/
patchoat.h 40 class Reference;
198 // For reference classes.
199 void operator() (mirror::Class* cls, mirror::Reference* ref) const
  /art/runtime/mirror/
object.cc 58 void operator()(mirror::Class* klass, mirror::Reference* ref) const
60 // Copy java.lang.ref.Reference.referent which isn't visited in
63 this->operator()(ref, mirror::Reference::ReferentOffset(), false);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
ref.tex 54 \chapter{Reference}
  /external/guice/core/test/com/googlecode/guice/
BytecodeGenTest.java 34 import java.lang.ref.Reference;
239 // take a weak reference to the generated proxy class
240 Reference<Class<?>> clazzRef = new WeakReference<Class<?>>(testObject.getClass());
248 * this should be enough to queue the weak reference
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java 37 import org.jf.dexlib2.iface.reference.MethodReference;
38 import org.jf.dexlib2.iface.reference.Reference;
307 Reference reference = instruction.getReference();
308 if (reference instanceof MethodReference) {
309 return ((MethodReference)reference).getName().equals("<init>");
324 //When constructing a new object, the register type will be an uninitialized reference after the new-instance
325 //instruction, but becomes an initialized reference once the <init> method is called. So even though invoke
327 //object register. If the uninitialized reference has been copied to other registers, they will be initialize
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 50 import org.jf.dexlib2.iface.reference.Reference;
51 import org.jf.dexlib2.iface.reference.StringReference;
136 @Nonnull @Override public Reference getReference() {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction.java 40 import org.jf.dexlib2.iface.reference.Reference;
41 import org.jf.dexlib2.immutable.reference.ImmutableFieldReference;
42 import org.jf.dexlib2.immutable.reference.ImmutableMethodReference;
43 import org.jf.dexlib2.immutable.reference.ImmutableStringReference;
44 import org.jf.dexlib2.immutable.reference.ImmutableTypeReference;
177 @Nonnull public Reference getReference() {
  /external/webrtc/webrtc/modules/audio_processing/test/
apmtest.m 57 refpath = [filepath 'reference/'];
138 warning(['Reference directory ' refpathtest ' does not exist']);
162 fprintf(1, '\nAll files are bit-exact to reference\n', nErr);
164 fprintf(1, '\n%d files are NOT bit-exact to reference\n', nErr);
265 fprintf(['Reference file: ' refpath outfile '\n']);
324 warning(['Reference file ' reffile ' does not exist']);
337 warning('Reference is not the same length as output');
345 fprintf([newfile ' is bit-exact to reference\n']);
  /libcore/libart/src/main/java/java/lang/
Daemons.java 23 import java.lang.ref.Reference;
31 * Calls Object.finalize() on objects in the finalizer reference queue. The VM
135 * pending list to the managed reference queue.
146 Reference<?> list;
169 // Object (not reference!) being finalized. Accesses may race!
217 private void doFinalize(FinalizerReference<?> reference) {
218 FinalizerReference.remove(reference);
219 Object object = reference.get();
220 reference.clear();
331 * processing a single reference, return that reference. Otherwise return null
    [all...]
  /external/llvm/lib/Analysis/
CFLAliasAnalysis.cpp 17 // location. The "actions" can be one of Dereference, Reference, or Assign.
114 // weight (Assign has Assign; Reference has Dereference).
130 // %b = load %a (%a Reference %b)
131 // %b = extractelement %a, 0 (%b Reference %a)
132 Reference
232 Output.push_back(Edge(Val, Ptr, EdgeType::Reference, AttrNone));
412 Output.push_back(Edge(Val, Ptr, EdgeType::Reference, AttrNone));
438 Output.push_back(Edge(&Inst, Ptr, EdgeType::Reference, AttrNone));
748 return EdgeType::Reference;
749 case EdgeType::Reference
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Proxy.java 29 import java.lang.ref.Reference;
191 * declaring class is assignable from the reference type of the interface
200 * reference type through which the method invocation occurred.
449 * reference to the class.
478 * or a weak reference to a Class object, if a proxy class for
491 if (value instanceof Reference) {
492 proxyClass = (Class<?>) ((Reference) value).get();
579 * generated, store it in the cache (with a weak reference);
    [all...]
  /art/runtime/gc/accounting/
remembered_set.cc 80 void operator()(mirror::Class* klass, mirror::Reference* ref) const
146 // a reference to the target space. So, remove it from the dirty
153 // Remove the cards that didn't contain a reference to the target

Completed in 2282 milliseconds

1 2 3 4 56 7 8 91011>>