Searched defs:Prototype (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DPrototype.java26 public final class Prototype implements Comparable<Prototype> { class in inherits:Comparable
28 private static final HashMap<String, Prototype> internTable =
29 new HashMap<String, Prototype>(500);
53 public static Prototype intern(String descriptor) {
57 Prototype result = internTable.get(descriptor);
103 result = new Prototype(descriptor, returnType, parameterTypes);
164 public static Prototype intern(String descriptor, Type definer,
166 Prototype base = intern(descriptor);
187 public static Prototype internInt
211 private Prototype(String descriptor, Type returnType, method in class:Prototype
[all...]
/dalvik/dx/src/com/android/dx/rop/type/
H A DPrototype.java26 public final class Prototype implements Comparable<Prototype> { class in inherits:Comparable
28 private static final HashMap<String, Prototype> internTable =
29 new HashMap<String, Prototype>(500);
53 public static Prototype intern(String descriptor) {
58 Prototype result;
107 result = new Prototype(descriptor, returnType, parameterTypes);
168 public static Prototype intern(String descriptor, Type definer,
170 Prototype base = intern(descriptor);
191 public static Prototype internInt
215 private Prototype(String descriptor, Type returnType, method in class:Prototype
[all...]

Completed in 96 milliseconds