HomeSort by relevance Sort by last modified time
    Searched refs:TypeList (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Comparison.java 21 import com.android.dx.rop.type.TypeList;
31 Rop rop(TypeList types) {
39 Rop rop(TypeList types) {
47 Rop rop(TypeList types) {
55 Rop rop(TypeList types) {
63 Rop rop(TypeList types) {
71 Rop rop(TypeList types) {
76 abstract Rop rop(TypeList types);
BinaryOp.java 21 import com.android.dx.rop.type.TypeList;
43 Rop rop(TypeList types) {
51 Rop rop(TypeList types) {
59 Rop rop(TypeList types) {
67 Rop rop(TypeList types) {
75 Rop rop(TypeList types) {
83 Rop rop(TypeList types) {
91 Rop rop(TypeList types) {
99 Rop rop(TypeList types) {
107 Rop rop(TypeList types)
    [all...]
TypeList.java 27 final class TypeList {
31 TypeList(TypeId<?>[] types) {
48 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, types);
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 19 import com.android.dx.rop.type.TypeList;
30 private final TypeList exceptions;
38 public AttExceptions(TypeList exceptions) {
66 public TypeList getExceptions() {
  /dalvik/dx/src/com/android/dex/
TypeList.java 21 public final class TypeList implements Comparable<TypeList> {
23 public static final TypeList EMPTY = new TypeList(null, Dex.EMPTY_SHORT_ARRAY);
28 public TypeList(Dex dex, short[] types) {
38 public int compareTo(TypeList other) {
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ThrowingInsn.java 20 import com.android.dexgen.rop.type.TypeList;
31 private final TypeList catches;
40 public static String toCatchString(TypeList catches) {
64 TypeList catches) {
86 public TypeList getCatches() {
ThrowingCstInsn.java 21 import com.android.dexgen.rop.type.TypeList;
30 private final TypeList catches;
43 TypeList catches, Constant cst) {
66 public TypeList getCatches() {
Rop.java 21 import com.android.dexgen.rop.type.TypeList;
62 private final TypeList sources;
65 private final TypeList exceptions;
94 public Rop(int opcode, Type result, TypeList sources,
95 TypeList exceptions, int branchingness, boolean isCallLike,
141 public Rop(int opcode, Type result, TypeList sources,
142 TypeList exceptions, int branchingness, String nickname) {
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions
    [all...]
FillArrayDataInsn.java 22 import com.android.dexgen.rop.type.TypeList;
68 public TypeList getCatches() {
PlainCstInsn.java 22 import com.android.dexgen.rop.type.TypeList;
51 public TypeList getCatches() {
SwitchInsn.java 21 import com.android.dexgen.rop.type.TypeList;
64 public TypeList getCatches() {
  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingInsn.java 20 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
40 public static String toCatchString(TypeList catches) {
64 TypeList catches) {
86 public TypeList getCatches() {
Rop.java 21 import com.android.dx.rop.type.TypeList;
62 private final TypeList sources;
65 private final TypeList exceptions;
94 public Rop(int opcode, Type result, TypeList sources,
95 TypeList exceptions, int branchingness, boolean isCallLike,
141 public Rop(int opcode, Type result, TypeList sources,
142 TypeList exceptions, int branchingness, String nickname) {
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions
    [all...]
ThrowingCstInsn.java 22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 public TypeList getCatches() {
FillArrayDataInsn.java 22 import com.android.dx.rop.type.TypeList;
67 public TypeList getCatches() {
PlainCstInsn.java 22 import com.android.dx.rop.type.TypeList;
51 public TypeList getCatches() {
SwitchInsn.java 21 import com.android.dx.rop.type.TypeList;
64 public TypeList getCatches() {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeListItem.java 22 import com.android.dexgen.rop.type.TypeList;
40 private final TypeList list;
47 public TypeListItem(TypeList list) {
86 public TypeList getList() {
117 TypeList thisList = this.list;
118 TypeList otherList = ((TypeListItem) other).list;
  /dalvik/dx/src/com/android/dx/dex/file/
TypeListItem.java 21 import com.android.dx.rop.type.TypeList;
39 private final TypeList list;
46 public TypeListItem(TypeList list) {
86 public TypeList getList() {
117 TypeList thisList = this.list;
118 TypeList otherList = ((TypeListItem) other).list;
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 23 import com.android.dx.rop.type.TypeList;
90 public TypeList getInterfaces();
  /art/libdexfile/dex/
signature.cc 28 using dex::TypeList;
35 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
51 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
69 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
  /external/catch2/include/internal/
catch_meta.hpp 16 struct TypeList {};
50 using type = TypeList< Container< elems... > >;
58 using type = typename append<TypeList<Container<Elems...>>, typename rewrap<Container, Elements...>::type>::type;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeList.java 21 public class TypeList implements RawDexObject {
54 * Returns if this TypeList comes before the provided TypeList, considering the legal
57 public boolean comesBefore(TypeList other) {

Completed in 1147 milliseconds

1 2 3 4 5 6 7