Searched refs:TypeList (Results 1 - 25 of 56) 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) {
65 public TypeList getExceptions() {
/dalvik/dx/src/com/android/dx/merge/
H A DTypeList.java23 public final class TypeList implements Comparable<TypeList> { class in inherits:Comparable
25 public static final TypeList EMPTY = new TypeList(null, new short[0]);
30 public TypeList(DexBuffer buffer, short[] types) { method in class:TypeList
39 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 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 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 DFillArrayDataInsn.java21 import com.android.dx.rop.type.TypeList;
68 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 DBasicBlock.java19 import com.android.dx.rop.type.TypeList;
249 public TypeList getExceptionHandlerTypes() {
/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.java22 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/
H A DClassFile.java22 import com.android.dx.rop.type.TypeList;
89 public TypeList getInterfaces();
/dalvik/dx/src/com/android/dx/cf/direct/
H A DDirectClassFile.java36 import com.android.dx.rop.type.TypeList;
123 private TypeList interfaces;
282 public TypeList getInterfaces() {
318 * Constructs and returns an instance of {@link TypeList} whose
330 public TypeList makeTypeList(int offset, int size) {
554 * Implementation of {@link TypeList} whose data comes directly
562 private static class DcfTypeList implements TypeList {
632 public TypeList withAddedType(Type type) {

Completed in 241 milliseconds

123