Searched refs:TypeList (Results 1 - 25 of 58) sorted by relevance

123

/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DTypeList.java22 public interface TypeList { interface
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
H A DStdTypeList.java22 * Standard implementation of {@link TypeList}.
25 extends FixedSizeList implements TypeList {
227 * is a static method so as to work on arbitrary {@link TypeList}
233 public static String toHuman(TypeList list) {
254 * is a static method so as to work on arbitrary {@link TypeList}
260 public static int hashContents(TypeList list) {
273 * is a static method so as to work on arbitrary {@link TypeList}
280 public static boolean equalContents(TypeList list1, TypeList list2) {
298 * is a static method so as to work on arbitrary {@link TypeList}
[all...]
/dalvik/dx/src/com/android/dx/rop/type/
H A DTypeList.java22 public interface TypeList { interface
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
H A DStdTypeList.java22 * Standard implementation of {@link TypeList}.
25 extends FixedSizeList implements TypeList {
227 * is a static method so as to work on arbitrary {@link TypeList}
233 public static String toHuman(TypeList list) {
254 * is a static method so as to work on arbitrary {@link TypeList}
260 public static int hashContents(TypeList list) {
273 * is a static method so as to work on arbitrary {@link TypeList}
280 public static boolean equalContents(TypeList list1, TypeList list2) {
298 * is a static method so as to work on arbitrary {@link TypeList}
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttExceptions.java19 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/
H A DTypeList.java21 public final class TypeList implements Comparable<TypeList> { class in inherits:Comparable
23 public static final TypeList EMPTY = new TypeList(null, Dex.EMPTY_SHORT_ARRAY);
28 public TypeList(Dex dex, short[] types) { method in class:TypeList
38 public int compareTo(TypeList other) {
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DThrowingInsn.java20 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() {
H A DThrowingCstInsn.java21 import com.android.dexgen.rop.type.TypeList;
30 private final TypeList catches;
43 TypeList catches, Constant cst) {
66 public TypeList getCatches() {
H A DRop.java21 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 source
[all...]
H A DFillArrayDataInsn.java22 import com.android.dexgen.rop.type.TypeList;
68 public TypeList getCatches() {
H A DPlainCstInsn.java22 import com.android.dexgen.rop.type.TypeList;
51 public TypeList getCatches() {
H A DSwitchInsn.java21 import com.android.dexgen.rop.type.TypeList;
64 public TypeList getCatches() {
H A DPlainInsn.java23 import com.android.dexgen.rop.type.TypeList;
72 public TypeList getCatches() {
H A DBasicBlock.java19 import com.android.dexgen.rop.type.TypeList;
249 public TypeList getExceptionHandlerTypes() {
/dalvik/dx/src/com/android/dx/rop/code/
H A DThrowingInsn.java20 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() {
H A DRop.java21 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 source
[all...]
H A DThrowingCstInsn.java22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 public TypeList getCatches() {
H A DFillArrayDataInsn.java22 import com.android.dx.rop.type.TypeList;
67 public TypeList getCatches() {
H A DPlainCstInsn.java22 import com.android.dx.rop.type.TypeList;
51 public TypeList getCatches() {
H A DSwitchInsn.java21 import com.android.dx.rop.type.TypeList;
64 public TypeList getCatches() {
H A DInvokePolymorphicInsn.java24 import com.android.dx.rop.type.TypeList;
44 private final TypeList catches;
73 public InvokePolymorphicInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches,
99 public TypeList getCatches() {
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DTypeListItem.java22 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/
H A DTypeListItem.java21 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/
H A DClassFile.java23 import com.android.dx.rop.type.TypeList;
90 public TypeList getInterfaces();
/dalvik/dx/src/com/android/dx/cf/direct/
H A DDirectClassFile.java38 import com.android.dx.rop.type.TypeList;
128 private TypeList interfaces;
304 public TypeList getInterfaces() {
356 * Constructs and returns an instance of {@link TypeList} whose
368 public TypeList makeTypeList(int offset, int size) {
601 * Implementation of {@link TypeList} whose data comes directly
609 private static class DcfTypeList implements TypeList {
684 public TypeList withAddedType(Type type) {

Completed in 351 milliseconds

123