/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/ |
H A D | RuntimeAnnotations_attribute.java | 39 protected RuntimeAnnotations_attribute(ClassReader cr, int name_index, int length) argument 42 int num_annotations = cr.readUnsignedShort(); 45 annotations[i] = new Annotation(cr);
|
H A D | RuntimeParameterAnnotations_attribute.java | 39 RuntimeParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument 42 int num_parameters = cr.readUnsignedByte(); 45 int num_annotations = cr.readUnsignedShort(); 48 annotations[i] = new Annotation(cr);
|
H A D | AnnotationDefault_attribute.java | 39 AnnotationDefault_attribute(ClassReader cr, int name_index, int length) argument 42 default_value = Annotation.element_value.read(cr);
|
H A D | Attributes.java | 41 Attributes(ClassReader cr) throws IOException { argument 43 int attrs_count = cr.readUnsignedShort(); 46 Attribute attr = Attribute.read(cr); 49 map.put(attr.getName(cr.getConstantPool()), attr);
|
H A D | BootstrapMethods_attribute.java | 32 * http://cr.openjdk.java.net/~jrose/pres/indy-javadoc-mlvm/ 42 BootstrapMethods_attribute(ClassReader cr, int name_index, int length) argument 45 int bootstrap_method_count = cr.readUnsignedShort(); 48 bootstrap_method_specifiers[i] = new BootstrapMethodSpecifier(cr); 76 BootstrapMethodSpecifier(ClassReader cr) throws IOException { argument 77 bootstrap_method_ref = cr.readUnsignedShort(); 78 int method_count = cr.readUnsignedShort(); 81 bootstrap_arguments[i] = cr.readUnsignedShort();
|
H A D | CompilationID_attribute.java | 37 CompilationID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 39 compilationID_index = cr.readUnsignedShort();
|
H A D | ConstantValue_attribute.java | 39 ConstantValue_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 41 constantvalue_index = cr.readUnsignedShort();
|
H A D | DefaultAttribute.java | 35 DefaultAttribute(ClassReader cr, int name_index, byte[] data) { argument
|
H A D | Deprecated_attribute.java | 39 Deprecated_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
|
H A D | EnclosingMethod_attribute.java | 40 EnclosingMethod_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 42 class_index = cr.readUnsignedShort(); 43 method_index = cr.readUnsignedShort();
|
H A D | Exceptions_attribute.java | 39 Exceptions_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 41 number_of_exceptions = cr.readUnsignedShort(); 44 exception_index_table[i] = cr.readUnsignedShort();
|
H A D | Field.java | 37 Field(ClassReader cr) throws IOException { argument 38 access_flags = new AccessFlags(cr); 39 name_index = cr.readUnsignedShort(); 40 descriptor = new Descriptor(cr); 41 attributes = new Attributes(cr);
|
H A D | Method.java | 37 Method(ClassReader cr) throws IOException { argument 38 access_flags = new AccessFlags(cr); 39 name_index = cr.readUnsignedShort(); 40 descriptor = new Descriptor(cr); 41 attributes = new Attributes(cr);
|
H A D | RuntimeInvisibleAnnotations_attribute.java | 39 RuntimeInvisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument 41 super(cr, name_index, length);
|
H A D | RuntimeInvisibleParameterAnnotations_attribute.java | 39 RuntimeInvisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument 41 super(cr, name_index, length);
|
H A D | RuntimeVisibleAnnotations_attribute.java | 39 RuntimeVisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument 41 super(cr, name_index, length);
|
H A D | RuntimeVisibleParameterAnnotations_attribute.java | 39 RuntimeVisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument 41 super(cr, name_index, length);
|
H A D | Signature_attribute.java | 39 Signature_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 41 signature_index = cr.readUnsignedShort();
|
H A D | SourceDebugExtension_attribute.java | 41 SourceDebugExtension_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 44 cr.readFully(debug_extension);
|
H A D | SourceFile_attribute.java | 39 SourceFile_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 41 sourcefile_index = cr.readUnsignedShort();
|
H A D | SourceID_attribute.java | 37 SourceID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 39 sourceID_index = cr.readUnsignedShort();
|
H A D | StackMap_attribute.java | 37 StackMap_attribute(ClassReader cr, int name_index, int length) argument 40 number_of_entries = cr.readUnsignedShort(); 43 entries[i] = new stack_map_frame(cr); 65 stack_map_frame(ClassReader cr) argument 67 super(255, cr);
|
H A D | Synthetic_attribute.java | 39 Synthetic_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
|
H A D | LineNumberTable_attribute.java | 39 LineNumberTable_attribute(ClassReader cr, int name_index, int length) throws IOException { argument 41 line_number_table_length = cr.readUnsignedShort(); 44 line_number_table[i] = new Entry(cr); 66 Entry(ClassReader cr) throws IOException { argument 67 start_pc = cr.readUnsignedShort(); 68 line_number = cr.readUnsignedShort();
|
/openjdk7/jdk/src/share/native/sun/java2d/ |
H A D | Trace.c | 35 J2dTraceImpl(int level, jboolean cr, const char *string, ...) argument 42 if (cr) { 68 if (cr) {
|