Lines Matching defs:cp
87 * ConstPool cp = cf.getConstPool();
89 * = new AnnotationsAttribute(cp, AnnotationsAttribute.visibleTag);
90 * Annotation a = new Annotation("Author", cp);
91 * a.addMemberValue("name", new StringMemberValue("Chiba", cp));
117 * @param cp constant pool
124 public AnnotationsAttribute(ConstPool cp, String attrname, byte[] info) {
125 super(cp, attrname, info);
134 * @param cp constant pool
139 public AnnotationsAttribute(ConstPool cp, String attrname) {
140 this(cp, attrname, new byte[] { 0, 0 });
146 AnnotationsAttribute(ConstPool cp, int n, DataInputStream in)
149 super(cp, n, in);
417 * @param cp the constant pool.
421 Renamer(byte[] info, ConstPool cp, Map map) {
423 cpool = cp;
576 Parser(byte[] info, ConstPool cp) {
578 pool = cp;
630 ConstPool cp = pool;
633 m = new ByteMemberValue(index, cp);
636 m = new CharMemberValue(index, cp);
639 m = new DoubleMemberValue(index, cp);
642 m = new FloatMemberValue(index, cp);
645 m = new IntegerMemberValue(index, cp);
648 m = new LongMemberValue(index, cp);
651 m = new ShortMemberValue(index, cp);
654 m = new BooleanMemberValue(index, cp);
657 m = new StringMemberValue(index, cp);