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

1 2 3

  /dalvik/dx/src/com/android/dx/cf/iface/
Method.java 19 import com.android.dx.rop.type.Prototype;
33 public Prototype getEffectiveDescriptor();
StdMethod.java 22 import com.android.dx.rop.type.Prototype;
30 private final Prototype effectiveDescriptor;
46 Prototype.intern(descStr, definingClass.getClassType(),
52 public Prototype getEffectiveDescriptor() {
  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 24 void llvm_raise(value Prototype, char *Message);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 19 import com.android.dexgen.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor);
55 * Gets the raw prototype of this method. This doesn't include a
58 * @return {@code non-null;} the method prototype
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 19 import com.android.dx.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor);
55 * Gets the raw prototype of this method. This doesn't include a
58 * @return {@code non-null;} the method prototype
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstBaseMethodRef.java 19 import com.android.dx.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor);
55 * Gets the raw prototype of this method. This doesn't include a
58 * @return {@code non-null;} the method prototype
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 26 public final class Prototype implements Comparable<Prototype> {
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);
184 * @param count {@code > 0;} the number of elements in the prototype
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 26 public final class Prototype implements Comparable<Prototype> {
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);
188 * @param count {@code > 0;} the number of elements in the prototype
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 26 public final class Prototype implements Comparable<Prototype> {
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);
188 * @param count {@code > 0;} the number of elements in the prototype
    [all...]
  /external/llvm/bindings/ocaml/irreader/
irreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdsSection.java 20 import com.android.dexgen.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) {
91 if (prototype == null) {
92 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dexgen.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
34 /** {@code non-null;} the wrapped prototype */
35 private final Prototype prototype; field in class:ProtoIdItem
37 /** {@code non-null;} the short-form of the prototype */
42 * prototype has no parameters
49 * @param prototype {@code non-null;} the constant for the prototype
51 public ProtoIdItem(Prototype prototype)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdsSection.java 20 import com.android.dx.rop.type.Prototype;
27 * Proto (method prototype) identifiers list section of a
34 private final TreeMap<Prototype, ProtoIdItem> protoIds;
44 protoIds = new TreeMap<Prototype, ProtoIdItem>();
86 * @param prototype {@code non-null;} the prototype to intern
89 public synchronized ProtoIdItem intern(Prototype prototype) {
90 if (prototype == null) {
91 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dx.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
31 /** {@code non-null;} the wrapped prototype */
32 private final Prototype prototype; field in class:ProtoIdItem
34 /** {@code non-null;} the short-form of the prototype */
39 * prototype has no parameters
46 * @param prototype {@code non-null;} the constant for the prototype
48 public ProtoIdItem(Prototype prototype)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ProtoIdsSection.java 20 import com.android.dx.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) {
91 if (prototype == null) {
92 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dx.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
31 /** {@code non-null;} the wrapped prototype */
32 private final Prototype prototype; field in class:ProtoIdItem
34 /** {@code non-null;} the short-form of the prototype */
39 * prototype has no parameters
46 * @param prototype {@code non-null;} the constant for the prototype
48 public ProtoIdItem(Prototype prototype)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 21 import com.android.dx.rop.type.Prototype;
33 * Gets the effective prototype of the method that this instance is
34 * being used for. The <i>effective</i> prototype includes an initial
37 * @return {@code non-null;} the method prototype
39 public Prototype getPrototype();
58 * {@code Prototype} (popped in reverse of the argument
59 * order, so the first prototype argument type is for the deepest
65 * @param prototype {@code non-null;} prototype indicating arguments to pop
67 public void popArgs(Frame frame, Prototype prototype)
    [all...]
BaseMachine.java 22 import com.android.dx.rop.type.Prototype;
36 /* {@code non-null;} the prototype for the associated method */
37 private final Prototype prototype; field in class:BaseMachine
84 * @param prototype {@code non-null;} the prototype for the
87 public BaseMachine(Prototype prototype) {
88 if (prototype == null) {
89 throw new NullPointerException("prototype == null")
    [all...]
ConcreteMethod.java 31 import com.android.dx.rop.type.Prototype;
178 public Prototype getEffectiveDescriptor() {
ValueAwareMachine.java 20 import com.android.dx.rop.type.Prototype;
33 * @param prototype {@code non-null;} the prototype for the associated
36 public ValueAwareMachine(Prototype prototype) {
37 super(prototype);
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
  /external/dexmaker/src/main/java/com/google/dexmaker/
MethodId.java 22 import com.android.dx.rop.type.Prototype;
96 Prototype prototype(boolean includeThis) { method in class:MethodId
97 return Prototype.intern(descriptor(includeThis));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array

Completed in 375 milliseconds

1 2 3