HomeSort by relevance Sort by last modified time
    Searched refs:Reference (Results 51 - 75 of 458) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction45cc.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
81 public Reference getReference() {
92 public Reference getReference2() {
DexBackedInstruction4rcc.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
60 public Reference getReference() {
71 public Reference getReference2() {
DexBackedInstruction20bc.java 37 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
39 import org.jf.dexlib2.iface.reference.Reference;
54 public Reference getReference() {
DexBackedInstruction22c.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
62 public Reference getReference() {
DexBackedInstruction35c.java 36 import org.jf.dexlib2.dexbacked.reference.DexBackedReference;
38 import org.jf.dexlib2.iface.reference.Reference;
81 public Reference getReference() {
  /frameworks/base/tools/aapt2/proto/
ProtoHelpers.cpp 108 pb::Reference_Type SerializeReferenceTypeToPb(Reference::Type type) {
110 case Reference::Type::kResource:
112 case Reference::Type::kAttribute:
120 Reference::Type DeserializeReferenceTypeFromPb(pb::Reference_Type pb_type) {
123 return Reference::Type::kResource;
125 return Reference::Type::kAttribute;
129 return Reference::Type::kResource;
  /frameworks/base/tools/aapt2/
Format.proto 93 message Reference {
128 optional Reference name = 3;
141 optional Reference key = 3;
145 optional Reference parent = 1;
154 optional Reference attr = 3;
188 optional Reference ref = 1;
ResourceUtils.h 44 * Returns true if the string was parsed as a reference
46 * `out_reference` set to the parsed reference.
48 * If '+' was present in the reference, `out_create` is set to true.
49 * If '*' was present in the reference, `out_private` is set to true.
55 * Returns true if the string is in the form of a resource reference
61 * Returns true if the string was parsed as an attribute reference
63 * with `out_reference` set to the parsed reference.
69 * reference(?[package:][type/]name).
101 * Returns a Reference, or None Maybe instance if the string `str` was parsed as
103 * valid reference to a style
    [all...]
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 19 import java.lang.ref.Reference;
33 * @param trim true to remove reference objects from the iterable after
37 final Iterable<? extends Reference<T>> iterable, final boolean trim) {
41 private final Iterator<? extends Reference<T>> delegate = iterable.iterator();
  /art/runtime/gc/
reference_processor.h 34 class Reference;
45 // Used to process java.lang.ref.Reference instances concurrently or paused.
56 // The slow path bool is contained in the reference class object, can only be set once
62 ObjPtr<mirror::Object> GetReferent(Thread* self, ObjPtr<mirror::Reference> reference)
66 ObjPtr<mirror::Reference> ref,
71 // Make a circular list with reference if it is not enqueued. Uses the finalizer queue lock.
72 bool MakeCircularListIfUnenqueued(ObjPtr<mirror::FinalizerReference> reference)
76 void ClearReferent(ObjPtr<mirror::Reference> ref)
90 // Wait until reference processing is done
    [all...]
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.h 23 enum class PointerType { None, Pointer, Reference };
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
MethodReference.java 32 package org.jf.dexlib2.iface.reference;
39 * This class represents a reference to a method.
41 public interface MethodReference extends Reference, Comparable<MethodReference> {
  /frameworks/base/tools/aapt2/xml/
XmlUtil.h 97 * Helper function for transforming the original Reference inRef to a fully
98 * qualified reference
99 * via the IPackageDeclStack. This will also mark the Reference as private if
103 const android::StringPiece& local_package, Reference* in_ref);
  /libcore/luni/src/test/java/libcore/util/
CollectionUtilsTest.java 19 import java.lang.ref.Reference;
31 List<Reference<String>> refs = new ArrayList<Reference<String>>();
101 * A reference that must be manually cleared.
103 public Reference<String> newLiteralReference(String s) {
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 46 * to the reference object.
62 void Visit(Reference* ref) override {
84 // Transform the attribute reference so that it is using the fully
86 // name. This will also mark the reference as being able to see private
88 // there was a '*' in the reference or if the package came from the
90 Reference transformed_reference = entry.key;
108 // Link/resolve the final value (mostly if it's a reference).
200 * The symbol is visible if it is public, or if the reference to it is
205 const Reference& ref,
219 const SymbolTable::Symbol* ReferenceLinker::ResolveSymbol(const Reference& reference
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RefQueueWorker.java 33 import java.lang.ref.Reference;
43 * {@link Reference Reference}s can be
59 /** The reference queue to monitor. */
106 // remove the next reference and process it
107 Reference<?> ref = refQueue.remove();
  /external/libchrome/base/metrics/
persistent_sample_map.h 51 static PersistentMemoryAllocator::Reference GetNextPersistentRecord(
57 static PersistentMemoryAllocator::Reference CreatePersistentRecord(
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction20bc.java 38 import org.jf.dexlib2.iface.reference.Reference;
39 import org.jf.dexlib2.immutable.reference.ImmutableReference;
40 import org.jf.dexlib2.immutable.reference.ImmutableReferenceFactory;
49 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction20bc
53 @Nonnull Reference reference) {
56 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
70 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
ImmutableInstruction21c.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;
48 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction21c
52 @Nonnull Reference reference) {
55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
69 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
ImmutableInstruction22c.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;
49 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction22c
54 @Nonnull Reference reference) {
58 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
74 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
ImmutableInstruction31c.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;
48 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction31c
52 @Nonnull Reference reference) {
55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
69 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
ImmutableInstruction3rc.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;
50 @Nonnull protected final ImmutableReference reference; field in class:ImmutableInstruction3rc
55 @Nonnull Reference reference) {
59 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
75 @Nonnull @Override public ImmutableReference getReference() { return reference; }
    [all...]
ImmutableInstructionFactory.java 36 import org.jf.dexlib2.iface.reference.Reference;
43 public class ImmutableInstructionFactory implements InstructionFactory<Reference> {
77 @Nonnull Reference reference) {
78 return new ImmutableInstruction20bc(opcode, verificationError, reference);
88 @Nonnull Reference reference) {
89 return new ImmutableInstruction21c(opcode, registerA, reference);
126 @Nonnull Reference reference)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableReferenceFactory.java 32 package org.jf.dexlib2.immutable.reference;
35 import org.jf.dexlib2.iface.reference.*;
42 public static ImmutableReference of(Reference reference) {
43 if (reference instanceof StringReference) {
44 return ImmutableStringReference.of((StringReference)reference);
46 if (reference instanceof TypeReference) {
47 return ImmutableTypeReference.of((TypeReference)reference);
49 if (reference instanceof FieldReference) {
50 return ImmutableFieldReference.of((FieldReference)reference);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationClient.java 22 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder.Reference;
108 Reference getIncludedWithin();

Completed in 339 milliseconds

1 23 4 5 6 7 8 91011>>