Lines Matching refs:cr

166     ConstantPool(ClassReader cr) throws IOException, InvalidEntry {
167 int count = cr.readUnsignedShort();
170 int tag = cr.readUnsignedByte();
173 pool[i] = new CONSTANT_Class_info(this, cr);
177 pool[i] = new CONSTANT_Double_info(cr);
182 pool[i] = new CONSTANT_Fieldref_info(this, cr);
186 pool[i] = new CONSTANT_Float_info(cr);
190 pool[i] = new CONSTANT_Integer_info(cr);
194 pool[i] = new CONSTANT_InterfaceMethodref_info(this, cr);
198 pool[i] = new CONSTANT_InvokeDynamic_info(this, cr);
202 pool[i] = new CONSTANT_Long_info(cr);
207 pool[i] = new CONSTANT_MethodHandle_info(this, cr);
211 pool[i] = new CONSTANT_MethodType_info(this, cr);
215 pool[i] = new CONSTANT_Methodref_info(this, cr);
219 pool[i] = new CONSTANT_NameAndType_info(this, cr);
223 pool[i] = new CONSTANT_String_info(this, cr);
227 pool[i] = new CONSTANT_Utf8_info(cr);
377 protected CPRefInfo(ConstantPool cp, ClassReader cr, int tag) throws IOException {
380 class_index = cr.readUnsignedShort();
381 name_and_type_index = cr.readUnsignedShort();
417 CONSTANT_Class_info(ConstantPool cp, ClassReader cr) throws IOException {
419 name_index = cr.readUnsignedShort();
485 CONSTANT_Double_info(ClassReader cr) throws IOException {
486 value = cr.readDouble();
519 CONSTANT_Fieldref_info(ConstantPool cp, ClassReader cr) throws IOException {
520 super(cp, cr, CONSTANT_Fieldref);
538 CONSTANT_Float_info(ClassReader cr) throws IOException {
539 value = cr.readFloat();
567 CONSTANT_Integer_info(ClassReader cr) throws IOException {
568 value = cr.readInt();
596 CONSTANT_InterfaceMethodref_info(ConstantPool cp, ClassReader cr) throws IOException {
597 super(cp, cr, CONSTANT_InterfaceMethodref);
615 CONSTANT_InvokeDynamic_info(ConstantPool cp, ClassReader cr) throws IOException {
617 bootstrap_method_attr_index = cr.readUnsignedShort();
618 name_and_type_index = cr.readUnsignedShort();
653 CONSTANT_Long_info(ClassReader cr) throws IOException {
654 value = cr.readLong();
687 CONSTANT_MethodHandle_info(ConstantPool cp, ClassReader cr) throws IOException {
689 reference_kind = RefKind.getRefkind(cr.readUnsignedByte());
690 reference_index = cr.readUnsignedShort();
733 CONSTANT_MethodType_info(ConstantPool cp, ClassReader cr) throws IOException {
735 descriptor_index = cr.readUnsignedShort();
768 CONSTANT_Methodref_info(ConstantPool cp, ClassReader cr) throws IOException {
769 super(cp, cr, CONSTANT_Methodref);
787 CONSTANT_NameAndType_info(ConstantPool cp, ClassReader cr) throws IOException {
789 name_index = cr.readUnsignedShort();
790 type_index = cr.readUnsignedShort();
829 CONSTANT_String_info(ConstantPool cp, ClassReader cr) throws IOException {
831 string_index = cr.readUnsignedShort();
864 CONSTANT_Utf8_info(ClassReader cr) throws IOException {
865 value = cr.readUTF();