Searched defs:name_and_type_index (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantFieldref.java90 * @param name_and_type_index and the Field signature
93 int name_and_type_index) {
94 super(Constants.CONSTANT_Fieldref, class_index, name_and_type_index);
92 ConstantFieldref(int class_index, int name_and_type_index) argument
H A DConstantInterfaceMethodref.java90 * @param name_and_type_index and the method signature
93 int name_and_type_index) {
94 super(Constants.CONSTANT_InterfaceMethodref, class_index, name_and_type_index);
92 ConstantInterfaceMethodref(int class_index, int name_and_type_index) argument
H A DConstantMethodref.java90 * @param name_and_type_index and the method signature
93 int name_and_type_index) {
94 super(Constants.CONSTANT_Methodref, class_index, name_and_type_index);
92 ConstantMethodref(int class_index, int name_and_type_index) argument
H A DConstantCP.java74 protected int class_index, name_and_type_index; field in class:ConstantCP
97 * @param name_and_type_index and the field signature
100 int name_and_type_index) {
103 this.name_and_type_index = name_and_type_index;
116 file.writeShort(name_and_type_index);
127 public final int getNameAndTypeIndex() { return name_and_type_index; }
144 * @param name_and_type_index points to Constant_NameAndType
146 public final void setNameAndTypeIndex(int name_and_type_index) { argument
147 this.name_and_type_index
99 ConstantCP(byte tag, int class_index, int name_and_type_index) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPool.java381 name_and_type_index = cr.readUnsignedShort();
384 protected CPRefInfo(ConstantPool cp, int tag, int class_index, int name_and_type_index) { argument
388 this.name_and_type_index = name_and_type_index;
408 return cp.getNameAndTypeInfo(name_and_type_index);
413 public final int name_and_type_index; field in class:ConstantPool.CPRefInfo
523 public CONSTANT_Fieldref_info(ConstantPool cp, int class_index, int name_and_type_index) { argument
524 super(cp, CONSTANT_Fieldref, class_index, name_and_type_index);
529 return "CONSTANT_Fieldref_info[class_index: " + class_index + ", name_and_type_index: " + name_and_type_index
600 CONSTANT_InterfaceMethodref_info(ConstantPool cp, int class_index, int name_and_type_index) argument
621 CONSTANT_InvokeDynamic_info(ConstantPool cp, int bootstrap_method_index, int name_and_type_index) argument
649 public final int name_and_type_index; field in class:ConstantPool.CONSTANT_InvokeDynamic_info
772 CONSTANT_Methodref_info(ConstantPool cp, int class_index, int name_and_type_index) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp1190 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); local
1191 to_cp->field_at_put(to_i, class_index, name_and_type_index);
1209 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); local
1210 to_cp->interface_method_at_put(to_i, class_index, name_and_type_index);
1224 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i); local
1225 to_cp->method_at_put(to_i, class_index, name_and_type_index);
H A DconstantPoolOop.hpp245 void invoke_dynamic_at_put(int which, int bootstrap_specifier_index, int name_and_type_index) { argument
247 *int_at_addr(which) = ((jint) name_and_type_index<<16) | bootstrap_specifier_index;
321 void field_at_put(int which, int class_index, int name_and_type_index) { argument
323 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
326 void method_at_put(int which, int class_index, int name_and_type_index) { argument
328 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
331 void interface_method_at_put(int which, int class_index, int name_and_type_index) { argument
333 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index; // Not so nice
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp122 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
124 u2 name_and_type_index = cfs->get_u2_fast(); local
125 cp->field_at_put(index, class_index, name_and_type_index);
130 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
132 u2 name_and_type_index = cfs->get_u2_fast(); local
133 cp->method_at_put(index, class_index, name_and_type_index);
138 cfs->guarantee_more(5, CHECK); // class_index, name_and_type_index, tag/access_flags
140 u2 name_and_type_index = cfs->get_u2_fast(); local
141 cp->interface_method_at_put(index, class_index, name_and_type_index);
190 u2 name_and_type_index local
[all...]

Completed in 76 milliseconds