Home
last modified time | relevance | path

Searched full:referencetype (Results 1 – 25 of 925) sorted by relevance

12345678910>>...37

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcode.java44 NOP(0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE),
45 …MOVE(0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTE…
46 …MOVE_FROM16(0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcod…
47 …MOVE_16(0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_R…
48 …MOVE_WIDE(0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SE…
49 …MOVE_WIDE_FROM16(0x05, "move-wide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTIN…
50 …MOVE_WIDE_16(0x06, "move-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opc…
51 …MOVE_OBJECT(0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcod…
52 …MOVE_OBJECT_FROM16(0x08, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CO…
53 …MOVE_OBJECT_16(0x09, "move-object/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE |…
[all …]
DReferenceType.java37 public final class ReferenceType { class
47 public static String toString(int referenceType) { in toString() argument
48 switch (referenceType) { in toString()
64 throw new InvalidReferenceTypeException(referenceType); in toString()
93 public static void validateReferenceType(int referenceType) { in validateReferenceType() argument
94 if (referenceType < 0 || referenceType > 4) { in validateReferenceType()
95 throw new InvalidReferenceTypeException(referenceType); in validateReferenceType()
100 private final int referenceType; field in ReferenceType.InvalidReferenceTypeException
102 public InvalidReferenceTypeException(int referenceType) { in InvalidReferenceTypeException() argument
103 super("Invalid reference type: %d", referenceType); in InvalidReferenceTypeException()
[all …]
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/
DOpcode.java43 NOP(0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE),
44 …MOVE(0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTE…
45 …MOVE_FROM16(0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcod…
46 …MOVE_16(0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_R…
47 …MOVE_WIDE(0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SE…
48 …MOVE_WIDE_FROM16(0x05, "move-wide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTIN…
49 …MOVE_WIDE_16(0x06, "move-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opc…
50 …MOVE_OBJECT(0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcod…
51 …MOVE_OBJECT_FROM16(0x08, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CO…
52 …MOVE_OBJECT_16(0x09, "move-object/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE |…
[all …]
DReferenceType.java43 public final class ReferenceType { class
78 public static void validateReferenceType(int referenceType) { in validateReferenceType() argument
79 if (referenceType < 0 || referenceType > 4) { in validateReferenceType()
80 throw new InvalidReferenceTypeException(referenceType); in validateReferenceType()
85 private final int referenceType; field in ReferenceType.InvalidReferenceTypeException
87 public InvalidReferenceTypeException(int referenceType) { in InvalidReferenceTypeException() argument
88 super("Invalid reference type: %d", referenceType); in InvalidReferenceTypeException()
89 this.referenceType = referenceType; in InvalidReferenceTypeException()
92 … public InvalidReferenceTypeException(int referenceType, String message, Object... formatArgs) { in InvalidReferenceTypeException() argument
94 this.referenceType = referenceType; in InvalidReferenceTypeException()
[all …]
/external/connectedappssdk/tests/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DCrossProfileSupportedReturnTypeTest.java51 TypeWithReturnValue.referenceType("Void"), in data()
52 TypeWithReturnValue.referenceType("String"), in data()
53 TypeWithReturnValue.referenceType("CharSequence"), in data()
54 TypeWithReturnValue.referenceType("String[]"), in data()
56 TypeWithReturnValue.referenceType("byte[]"), in data()
57 TypeWithReturnValue.referenceType("byte[][][]"), in data()
58 TypeWithReturnValue.referenceType("Byte"), in data()
60 TypeWithReturnValue.referenceType("short[]"), in data()
61 TypeWithReturnValue.referenceType("short[][][]"), in data()
62 TypeWithReturnValue.referenceType("Short"), in data()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/iterators/iterator.requirements/alg.req.ind.copy/
Dindirectly_copyable_storable.compile.pass.cpp52 struct ReferenceType { struct
53 ReferenceType& operator=(ValueType const&);
54 ReferenceType& operator=(ValueType&) = delete;
55 ReferenceType& operator=(ValueType&&);
56 ReferenceType& operator=(ValueType const&&);
60 operator ReferenceType&() const;
64 ReferenceType& operator*() const;
79 struct ReferenceType { struct
80 ReferenceType& operator=(ValueType const&) = delete;
81 ReferenceType& operator=(ValueType&);
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/iterators/iterator.requirements/alg.req.ind.move/
Dindirectly_movable_storable.compile.pass.cpp41 struct ReferenceType { struct
42 ReferenceType& operator=(ValueType) = delete;
45 …// `ValueType` is convertible to `ReferenceType` but not assignable to it. This is implemented by …
46 // `operator=(ValueType)` in `ReferenceType`.
48 operator ReferenceType&() const;
52 ReferenceType& operator*() const;
56 // do `ReferenceType r = ValueType();` but not `r = ValueType();`).
77 struct ReferenceType { struct
78 ReferenceType& operator=(ValueType const&);
83 ValueType(const ReferenceType&);
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DReferenceType.java13 public class ReferenceType extends SimpleType class
29 protected ReferenceType(Class<?> cls, TypeBindings bindings, in ReferenceType() method in ReferenceType
42 * the usual way for {@link ReferenceType}s to come into existence.
47 protected ReferenceType(TypeBase base, JavaType refType) in ReferenceType() method in ReferenceType
64 public static ReferenceType upgradeFrom(JavaType baseType, JavaType refdType) { in upgradeFrom()
71 return new ReferenceType((TypeBase) baseType, refdType); in upgradeFrom()
79 public static ReferenceType construct(Class<?> cls, TypeBindings bindings, in construct()
82 return new ReferenceType(cls, bindings, superClass, superInts, in construct()
87 public static ReferenceType construct(Class<?> cls, JavaType refType) { in construct()
88 return new ReferenceType(cls, TypeBindings.emptyBindings(), in construct()
[all …]
/external/jackson-databind/docs/javadoc/2.6/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.6.0 API)…
16 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
37 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
51 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
52 <li><a href="ReferenceType.html" target="_top">No&nbsp;Frames</a></li>
74 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
80 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
110 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
112 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
118ReferenceType-">AtomicReferenceSerializer</a></span>(<a href="../../../../../../com/fasterxml/jack…
[all …]
/external/jackson-databind/docs/javadoc/2.7/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.7.0 API)…
14 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
30 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
44 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
45 <li><a href="ReferenceType.html" target="_top">No Frames</a></li>
67 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
73 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
126 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
128 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
136ReferenceType,%20com.fasterxml.jackson.databind.DeserializationConfig,%20com.fasterxml.jackson.dat…
[all …]
/external/jackson-databind/docs/javadoc/2.9/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.9.0 API)…
16 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
37 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
51 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
52 <li><a href="ReferenceType.html" target="_top">No&nbsp;Frames</a></li>
74 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
80 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
133 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
135 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
143ReferenceType-com.fasterxml.jackson.databind.DeserializationConfig-com.fasterxml.jackson.databind.…
[all …]
/external/jackson-databind/docs/javadoc/2.8/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.8.0 API)…
14 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
30 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
44 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
45 <li><a href="ReferenceType.html" target="_top">No Frames</a></li>
67 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
73 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
126 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
128 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
136ReferenceType,%20com.fasterxml.jackson.databind.DeserializationConfig,%20com.fasterxml.jackson.dat…
[all …]
/external/jackson-databind/docs/javadoc/2.11.rc1/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.11.0.rc1…
16 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
37 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
51 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
52 <li><a href="ReferenceType.html" target="_top">No&nbsp;Frames</a></li>
74 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
80 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
133 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
135 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
143ReferenceType-com.fasterxml.jackson.databind.DeserializationConfig-com.fasterxml.jackson.databind.…
[all …]
/external/jackson-databind/docs/javadoc/2.10/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.10.0 API…
16 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
37 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
51 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
52 <li><a href="ReferenceType.html" target="_top">No&nbsp;Frames</a></li>
74 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
80 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
133 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
135 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
143ReferenceType-com.fasterxml.jackson.databind.DeserializationConfig-com.fasterxml.jackson.databind.…
[all …]
/external/jackson-databind/docs/javadoc/2.11/com/fasterxml/jackson/databind/type/class-use/
DReferenceType.html7 <title>Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-databind 2.11.0 API…
16 …parent.document.title="Uses of Class com.fasterxml.jackson.databind.type.ReferenceType (jackson-da…
37 <li><a href="../../../../../../com/fasterxml/jackson/databind/type/ReferenceType.html" title="class…
51 …/../../../../index.html?com/fasterxml/jackson/databind/type/class-use/ReferenceType.html" target="…
52 <li><a href="ReferenceType.html" target="_top">No&nbsp;Frames</a></li>
74 …terxml.jackson.databind.type.ReferenceType" class="title">Uses of Class<br>com.fasterxml.jackson.d…
80 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
133 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
135 …/fasterxml/jackson/databind/type/ReferenceType.html" title="class in com.fasterxml.jackson.databin…
143ReferenceType-com.fasterxml.jackson.databind.DeserializationConfig-com.fasterxml.jackson.databind.…
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp72 uint64_t ReferenceType; in tryAddingSymbolicOperand() local
77 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch; in tryAddingSymbolicOperand()
78 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType, in tryAddingSymbolicOperand()
87 if (ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub) in tryAddingSymbolicOperand()
89 else if (ReferenceType == in tryAddingSymbolicOperand()
93 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADRP; in tryAddingSymbolicOperand()
101 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address, in tryAddingSymbolicOperand()
110 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADDXri; in tryAddingSymbolicOperand()
112 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXui; in tryAddingSymbolicOperand()
114 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXl; in tryAddingSymbolicOperand()
[all …]
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp71 uint64_t ReferenceType; in tryAddingSymbolicOperand() local
76 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch; in tryAddingSymbolicOperand()
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType, in tryAddingSymbolicOperand()
86 if (ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub) in tryAddingSymbolicOperand()
88 else if (ReferenceType == in tryAddingSymbolicOperand()
92 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADRP; in tryAddingSymbolicOperand()
100 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address, in tryAddingSymbolicOperand()
109 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADDXri; in tryAddingSymbolicOperand()
111 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXui; in tryAddingSymbolicOperand()
113 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXl; in tryAddingSymbolicOperand()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
DWildcardType.java32 private ReferenceType ext;
34 private ReferenceType sup;
39 public WildcardType(final ReferenceType ext) { in WildcardType()
43 public WildcardType(final ReferenceType ext, final ReferenceType sup) { in WildcardType()
49 final ReferenceType ext, final ReferenceType sup) { in WildcardType()
63 public ReferenceType getExtends() { in getExtends()
67 public ReferenceType getSuper() { in getSuper()
71 public void setExtends(final ReferenceType ext) { in setExtends()
76 public void setSuper(final ReferenceType sup) { in setSuper()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DReferenceTypeImpl.java34 implements ReferenceType {
140 public int compareTo(ReferenceType object) { in compareTo()
178 signature = JDWP.ReferenceType.Signature. in signature()
193 JDWP.ReferenceType.SignatureWithGeneric result; in genericSignature()
195 result = JDWP.ReferenceType.SignatureWithGeneric. in genericSignature()
212 JDWP.ReferenceType.ClassLoader. in classLoader()
309 JDWP.ReferenceType.FieldsWithGeneric.FieldInfo[] jdwpFields; in fields()
311 jdwpFields = JDWP.ReferenceType.FieldsWithGeneric.process(vm, this).declared; in fields()
317 JDWP.ReferenceType.FieldsWithGeneric.FieldInfo fi in fields()
327 JDWP.ReferenceType.Fields.FieldInfo[] jdwpFields; in fields()
[all …]
DClassLoaderReferenceImpl.java36 List<ReferenceType> visibleClasses = null;
52 public List<ReferenceType> definedClasses() { in definedClasses()
53 ArrayList<ReferenceType> definedClasses = new ArrayList<ReferenceType>(); in definedClasses()
54 for (ReferenceType type : vm.allClasses()) { in definedClasses()
63 public List<ReferenceType> visibleClasses() { in visibleClasses()
64 List<ReferenceType> classes = null; in visibleClasses()
75 classes = new ArrayList<ReferenceType>(jdwpClasses.length); in visibleClasses()
77 classes.add(vm.referenceType(jdwpClasses[i].typeID, in visibleClasses()
97 List<ReferenceType> types = visibleClasses(); in findType()
98 Iterator<ReferenceType> iter = types.iterator(); in findType()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
DWildcardType.java34 private ReferenceType ext;
36 private ReferenceType sup;
41 public WildcardType(final ReferenceType ext) { in WildcardType()
45 public WildcardType(final ReferenceType ext, final ReferenceType sup) { in WildcardType()
51 final ReferenceType ext, final ReferenceType sup) { in WildcardType()
65 public ReferenceType getExtends() { in getExtends()
69 public ReferenceType getSuper() { in getSuper()
73 public WildcardType setExtends(final ReferenceType ext) { in setExtends()
79 public WildcardType setSuper(final ReferenceType sup) { in setSuper()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DDexBackedReference.java34 import org.jf.dexlib2.ReferenceType;
42 …public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int re… in makeReference() argument
43 switch (referenceType) { in makeReference()
44 case ReferenceType.STRING: in makeReference()
46 case ReferenceType.TYPE: in makeReference()
48 case ReferenceType.METHOD: in makeReference()
50 case ReferenceType.FIELD: in makeReference()
52 case ReferenceType.METHOD_PROTO: in makeReference()
54 case ReferenceType.METHOD_HANDLE: in makeReference()
56 case ReferenceType.CALL_SITE: in makeReference()
[all …]
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/reference/
DDexBackedReference.java33 import com.android.tools.smali.dexlib2.ReferenceType;
41 …public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int re… in makeReference() argument
42 switch (referenceType) { in makeReference()
43 case ReferenceType.STRING: in makeReference()
45 case ReferenceType.TYPE: in makeReference()
47 case ReferenceType.METHOD: in makeReference()
49 case ReferenceType.FIELD: in makeReference()
51 case ReferenceType.METHOD_PROTO: in makeReference()
53 case ReferenceType.METHOD_HANDLE: in makeReference()
55 case ReferenceType.CALL_SITE: in makeReference()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
DImmutableReferenceFactory.java34 import org.jf.dexlib2.ReferenceType;
68 public static ImmutableReference of(int referenceType, Reference reference) { in of() argument
69 switch (referenceType) { in of()
70 case ReferenceType.STRING: in of()
72 case ReferenceType.TYPE: in of()
74 case ReferenceType.FIELD: in of()
76 case ReferenceType.METHOD: in of()
78 case ReferenceType.METHOD_PROTO: in of()
80 case ReferenceType.CALL_SITE: in of()
82 case ReferenceType.METHOD_HANDLE: in of()
[all …]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DReferenceFormatter.java33 import org.jf.dexlib2.ReferenceType;
55 writeReference(writer, ReferenceType.METHOD_PROTO, callSite.getMethodProto()); in writeCallSiteReference()
66 … writeReference(writer, ReferenceType.METHOD, callSite.getMethodHandle().getMemberReference()); in writeCallSiteReference()
69 public static void writeReference(IndentingWriter writer, int referenceType, in writeReference() argument
71 switch (referenceType) { in writeReference()
72 case ReferenceType.STRING: in writeReference()
75 case ReferenceType.TYPE: in writeReference()
78 case ReferenceType.METHOD: in writeReference()
81 case ReferenceType.FIELD: in writeReference()
84 case ReferenceType.METHOD_PROTO: in writeReference()
[all …]

12345678910>>...37