HomeSort by relevance Sort by last modified time
    Searched refs:TypeList (Results 1 - 25 of 174) 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/src/dx/java/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/src/main/java/com/google/dexmaker/
Comparison.java 21 import com.android.dx.rop.type.TypeList;
30 @Override Rop rop(TypeList types) {
37 @Override Rop rop(TypeList types) {
44 @Override Rop rop(TypeList types) {
51 @Override Rop rop(TypeList types) {
58 @Override Rop rop(TypeList types) {
65 @Override Rop rop(TypeList types) {
70 abstract Rop rop(TypeList types);
BinaryOp.java 21 import com.android.dx.rop.type.TypeList;
42 @Override Rop rop(TypeList types) {
49 @Override Rop rop(TypeList types) {
56 @Override Rop rop(TypeList types) {
63 @Override Rop rop(TypeList types) {
70 @Override Rop rop(TypeList types) {
77 @Override Rop rop(TypeList types) {
84 @Override Rop rop(TypeList types) {
91 @Override Rop rop(TypeList types) {
98 @Override Rop rop(TypeList types)
    [all...]
TypeList.java 27 final class TypeList {
31 TypeList(TypeId<?>[] types) {
47 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) {
65 public TypeList getExceptions() {
  /libcore/dex/src/main/java/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) {
37 @Override 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...]
  /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() {
ThrowingCstInsn.java 22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 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...]
  /external/dexmaker/src/dx/java/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() {
ThrowingCstInsn.java 22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 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...]
  /external/lldb/include/lldb/Symbol/
TypeList.h 1 //===-- TypeList.h ----------------------------------------------*- C++ -*-===//
19 class TypeList
25 TypeList();
28 ~TypeList();
39 TypeList
83 DISALLOW_COPY_AND_ASSIGN (TypeList);
SymbolVendor.h 19 #include "lldb/Symbol/TypeList.h"
127 TypeList& types);
144 TypeList&
150 const TypeList&
159 TypeList &type_list);
192 TypeList m_type_list; // Uniqued types for all parsers owned by this module
  /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) {
85 public TypeList getList() {
116 TypeList thisList = this.list;
117 TypeList otherList = ((TypeListItem) other).list;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 22 import com.android.dx.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/cf/iface/
ClassFile.java 22 import com.android.dx.rop.type.TypeList;
89 public TypeList getInterfaces();
  /external/lldb/source/Symbol/
TypeList.cpp 1 //===-- TypeList.cpp --------------------------------------------*- C++ -*-===//
35 #include "lldb/Symbol/TypeList.h"
41 TypeList::TypeList() :
49 TypeList::~TypeList()
54 TypeList::Insert (const TypeSP& type_sp)
63 TypeList::InsertUnique (const TypeSP& type_sp)
84 //TypeList::FindType(lldb::user_id_t uid)
95 //TypeList
    [all...]
  /frameworks/native/services/sensorservice/
traits.h 30 struct TypeList {
36 #define TYPELIST_1(T1) TypeList<T1, NullType>
37 #define TYPELIST_2(T1, T2) TypeList<T1, TYPELIST_1(T2)>
38 #define TYPELIST_3(T1, T2, T3) TypeList<T1, TYPELIST_2(T2, T3)>
39 #define TYPELIST_4(T1, T2, T3, T4) TypeList<T1, TYPELIST_3(T2, T3, T4)>
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {

Completed in 723 milliseconds

1 2 3 4 5 6 7