Home | History | Annotate | Download | only in cst

Lines Matching defs:prototype

18 import com.android.dx.rop.type.Prototype;
22 * Prototype reference.
26 /** {@code non-null;} the prototype */
27 private final Prototype prototype;
29 public CstProtoRef(Prototype prototype) {
30 this.prototype = prototype;
41 Prototype prototype = Prototype.fromDescriptor(descriptor.getString());
42 return new CstProtoRef(prototype);
57 return prototype.hashCode();
76 return prototype.compareTo(otherCstProtoRef.getPrototype());
82 return prototype.getDescriptor();
91 public Prototype getPrototype() {
92 return prototype;