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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt2/
Format.proto 92 message Reference {
127 optional Reference name = 3;
140 optional Reference key = 3;
144 optional Reference parent = 1;
153 optional Reference attr = 3;
187 optional Reference ref = 1;
ResourceValues.h 156 * A reference to another resource. This maps to android::Res_value::TYPE_REFERENCE.
158 * A reference can be symbolic (with the name set to a valid resource name) or be
161 struct Reference : public BaseItem<Reference> {
169 Reference::Type referenceType;
172 Reference();
173 explicit Reference(const ResourceNameRef& n, Type type = Type::kResource);
174 explicit Reference(const ResourceId& i, Type type = Type::kResource);
178 Reference* clone(StringPool* newPool) const override;
266 Reference symbol
    [all...]
ResourceValues.cpp 67 Reference::Reference() : referenceType(Reference::Type::kResource) {
70 Reference::Reference(const ResourceNameRef& n, Type t) :
74 Reference::Reference(const ResourceId& i, Type type) : id(i), referenceType(type) {
77 bool Reference::equals(const Value* value) const {
78 const Reference* other = valueCast<Reference>(value)
    [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();
  /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 75 * Helper function for transforming the original Reference inRef to a fully qualified reference
76 * via the IPackageDeclStack. This will also mark the Reference as private if the namespace of
80 const StringPiece16& localPackage, Reference* inRef);
  /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 40 * to the reference object.
54 void visit(Reference* ref) override {
73 // Transform the attribute reference so that it is using the fully qualified package
74 // name. This will also mark the reference as being able to see private resources if
75 // there was a '*' in the reference or if the package came from the private namespace.
76 Reference transformedReference = entry.key;
93 // Link/resolve the final value (mostly if it's a reference).
164 * The symbol is visible if it is public, or if the reference to it is requesting private access
167 bool ReferenceLinker::isSymbolVisible(const SymbolTable::Symbol& symbol, const Reference& ref,
181 const SymbolTable::Symbol* ReferenceLinker::resolveSymbol(const Reference& reference
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
reduce.hpp 189 template <typename Pointer, typename Reference, class Op>
190 static __device__ void reduce(Pointer smem, Reference val, unsigned int tid, Op op)
248 template <unsigned int I, typename Pointer, typename Reference, class Op>
251 static __device__ void loopShfl(Reference val, Op op, unsigned int N)
254 Unroll<I / 2, Pointer, Reference, Op>::loopShfl(val, op, N);
256 static __device__ void loop(Pointer smem, Reference val, unsigned int tid, Op op)
259 Unroll<I / 2, Pointer, Reference, Op>::loop(smem, val, tid, op);
262 template <typename Pointer, typename Reference, class Op>
263 struct Unroll<0, Pointer, Reference, Op>
265 static __device__ void loopShfl(Reference, Op, unsigned int
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/block/detail/
reduce.hpp 221 template <typename Pointer, typename Reference, class Op>
222 __device__ static void reduce(Pointer smem, Reference val, uint tid, Op op)
282 template <int I, typename Pointer, typename Reference, class Op> struct Unroll
284 __device__ static void loop(Pointer smem, Reference val, uint tid, Op op)
287 Unroll<I / 2, Pointer, Reference, Op>::loop(smem, val, tid, op);
291 __device__ static void loopShfl(Reference val, Op op, uint N)
294 Unroll<I / 2, Pointer, Reference, Op>::loopShfl(val, op, N);
299 template <typename Pointer, typename Reference, class Op> struct Unroll<0, Pointer, Reference, Op>
301 __device__ __forceinline__ static void loop(Pointer, Reference, uint, Op
    [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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
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() {
  /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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_adaptor.hpp 176 , class Reference
188 is_same<Reference,use_default>
190 , remove_reference<Reference>
205 Reference
233 // to fiddle with the reference type it is highly likely that the
245 // Reference - the reference type of the resulting iterator, and in
248 // iterator_traits<Base>::reference is used.
258 , class Reference = use_default
263 Derived, Base, Value, Traversal, Reference, Differenc
    [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();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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

Completed in 2603 milliseconds

1 23 4 5 6 7 8 91011>>