Searched refs:name_index (Results 1 - 25 of 91) sorted by relevance

1234

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDefaultAttribute.java35 DefaultAttribute(ClassReader cr, int name_index, byte[] data) { argument
36 super(name_index, data.length);
40 public DefaultAttribute(ConstantPool constant_pool, int name_index, byte[] info) { argument
41 super(name_index, info.length);
H A DDeprecated_attribute.java39 Deprecated_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
48 public Deprecated_attribute(int name_index) { argument
49 super(name_index, 0);
H A DSynthetic_attribute.java39 Synthetic_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
48 public Synthetic_attribute(int name_index) { argument
49 super(name_index, 0);
H A DField.java39 name_index = cr.readUnsignedShort();
45 int name_index, Descriptor descriptor,
48 this.name_index = name_index;
58 return constant_pool.getUTF8Value(name_index);
62 public final int name_index; field in class:Field
44 Field(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
H A DMethod.java39 name_index = cr.readUnsignedShort();
45 int name_index, Descriptor descriptor,
48 this.name_index = name_index;
58 return constant_pool.getUTF8Value(name_index);
62 public final int name_index; field in class:Method
44 Method(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
H A DConstantValue_attribute.java39 ConstantValue_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
49 public ConstantValue_attribute(int name_index, int constantvalue_index) { argument
50 super(name_index, 2);
H A DRuntimeAnnotations_attribute.java39 protected RuntimeAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(name_index, length);
48 protected RuntimeAnnotations_attribute(int name_index, Annotation[] annotations) { argument
49 super(name_index, length(annotations));
H A DRuntimeInvisibleAnnotations_attribute.java39 RuntimeInvisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
49 public RuntimeInvisibleAnnotations_attribute(int name_index, Annotation[] annotations) { argument
50 super(name_index, annotations);
H A DRuntimeInvisibleParameterAnnotations_attribute.java39 RuntimeInvisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
49 public RuntimeInvisibleParameterAnnotations_attribute(int name_index, Annotation[][] parameter_annotations) { argument
50 super(name_index, parameter_annotations);
H A DRuntimeVisibleAnnotations_attribute.java39 RuntimeVisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
49 public RuntimeVisibleAnnotations_attribute(int name_index, Annotation[] annotations) { argument
50 super(name_index, annotations);
H A DRuntimeVisibleParameterAnnotations_attribute.java39 RuntimeVisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
49 public RuntimeVisibleParameterAnnotations_attribute(int name_index, Annotation[][] parameter_annotations) { argument
50 super(name_index, parameter_annotations);
H A DAnnotationDefault_attribute.java39 AnnotationDefault_attribute(ClassReader cr, int name_index, int length) argument
41 super(name_index, length);
50 public AnnotationDefault_attribute(int name_index, Annotation.element_value default_value) { argument
51 super(name_index, default_value.length());
H A DCompilationID_attribute.java37 CompilationID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
38 super(name_index, length);
47 public CompilationID_attribute(int name_index, int compilationID_index) { argument
48 super(name_index, 2);
H A DEnclosingMethod_attribute.java40 EnclosingMethod_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
41 super(name_index, length);
51 public EnclosingMethod_attribute(int name_index, int class_index, int method_index) { argument
52 super(name_index, 4);
H A DExceptions_attribute.java39 Exceptions_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
52 public Exceptions_attribute(int name_index, int[] exception_index_table) { argument
53 super(name_index, 2 + 2 * exception_index_table.length);
H A DRuntimeParameterAnnotations_attribute.java39 RuntimeParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(name_index, length);
53 protected RuntimeParameterAnnotations_attribute(int name_index, Annotation[][] parameter_annotations) { argument
54 super(name_index, length(parameter_annotations));
H A DSignature_attribute.java39 Signature_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
49 public Signature_attribute(int name_index, int signature_index) { argument
50 super(name_index, 2);
H A DSourceDebugExtension_attribute.java41 SourceDebugExtension_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
42 super(name_index, length);
52 public SourceDebugExtension_attribute(int name_index, byte[] debug_extension) { argument
53 super(name_index, debug_extension.length);
H A DSourceFile_attribute.java39 SourceFile_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
49 public SourceFile_attribute(int name_index, int sourcefile_index) { argument
50 super(name_index, 2);
H A DSourceID_attribute.java37 SourceID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
38 super(name_index, length);
47 public SourceID_attribute(int name_index, int sourceID_index) { argument
48 super(name_index, 2);
H A DLocalVariableTable_attribute.java39 LocalVariableTable_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
40 super(name_index, length);
52 public LocalVariableTable_attribute(int name_index, Entry[] local_variable_table) { argument
53 super(name_index, 2 + local_variable_table.length * Entry.length());
69 name_index = cr.readUnsignedShort();
80 public final int name_index; field in class:LocalVariableTable_attribute.Entry
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantClass.java73 private int name_index; // Identical to ConstantString except for the name field in class:ConstantClass
94 * @param name_index Name index in constant pool. Should refer to a
97 public ConstantClass(int name_index) { argument
99 this.name_index = name_index;
122 file.writeShort(name_index);
128 public final int getNameIndex() { return name_index; }
131 * @param name_index.
133 public final void setNameIndex(int name_index) { argument
134 this.name_index
[all...]
H A DAttribute.java87 protected int name_index; // Points to attribute name in constant pool field in class:Attribute
92 protected Attribute(byte tag, int name_index, int length, argument
95 this.name_index = name_index;
117 file.writeShort(name_index);
160 int name_index;
164 // Get class name from constant pool via `name_index' indirection
165 name_index = (int)file.readUnsignedShort();
166 c = (ConstantUtf8)constant_pool.getConstant(name_index,
187 return r.createAttribute(name_index, lengt
250 setNameIndex(int name_index) argument
[all...]
H A DConstantNameAndType.java74 private int name_index; // Name of field/method field in class:ConstantNameAndType
96 * @param name_index Name of field/method
99 public ConstantNameAndType(int name_index, argument
103 this.name_index = name_index;
127 file.writeShort(name_index);
134 public final int getNameIndex() { return name_index; }
154 * @param name_index.
156 public final void setNameIndex(int name_index) { argument
157 this.name_index
[all...]
H A DAttributeReader.java77 @param name_index An index into the constant pool, indexing a
96 public Attribute createAttribute(int name_index, argument

Completed in 1133 milliseconds

1234