Home | History | Annotate | Download | only in code

Lines Matching refs:cst

19 import com.android.dx.rop.cst.Constant;
27 private final Constant cst;
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
42 if (cst == null) {
43 throw new NullPointerException("cst == null");
46 this.cst = cst;
52 return cst.toHuman();
61 return cst;
72 && cst.equals(((CstInsn)b).getConstant());