Home | History | Annotate | Download | only in cst

Lines Matching refs:Prototype

19 import com.android.dexgen.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype;
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
60 public final Prototype getPrototype() {
61 return prototype;
65 * Gets the prototype of this method as either a
68 * prototype. In the case of an instance method, this has an
73 * @return {@code non-null;} the method prototype
75 public final Prototype getPrototype(boolean isStatic) {
77 return prototype;
81 instancePrototype = prototype.withFirstParameter(thisType);
97 return prototype.compareTo(otherMethod.prototype);
108 return prototype.getReturnType();