Searched defs:cr (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DRuntimeAnnotations_attribute.java39 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 DRuntimeParameterAnnotations_attribute.java39 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 DAnnotationDefault_attribute.java39 AnnotationDefault_attribute(ClassReader cr, int name_index, int length) argument
42 default_value = Annotation.element_value.read(cr);
H A DAttributes.java41 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 DBootstrapMethods_attribute.java32 * 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 DCompilationID_attribute.java37 CompilationID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
39 compilationID_index = cr.readUnsignedShort();
H A DConstantValue_attribute.java39 ConstantValue_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
41 constantvalue_index = cr.readUnsignedShort();
H A DDefaultAttribute.java35 DefaultAttribute(ClassReader cr, int name_index, byte[] data) { argument
H A DDeprecated_attribute.java39 Deprecated_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
H A DEnclosingMethod_attribute.java40 EnclosingMethod_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
42 class_index = cr.readUnsignedShort();
43 method_index = cr.readUnsignedShort();
H A DExceptions_attribute.java39 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 DField.java37 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 DMethod.java37 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 DRuntimeInvisibleAnnotations_attribute.java39 RuntimeInvisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
H A DRuntimeInvisibleParameterAnnotations_attribute.java39 RuntimeInvisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
H A DRuntimeVisibleAnnotations_attribute.java39 RuntimeVisibleAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
H A DRuntimeVisibleParameterAnnotations_attribute.java39 RuntimeVisibleParameterAnnotations_attribute(ClassReader cr, int name_index, int length) argument
41 super(cr, name_index, length);
H A DSignature_attribute.java39 Signature_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
41 signature_index = cr.readUnsignedShort();
H A DSourceDebugExtension_attribute.java41 SourceDebugExtension_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
44 cr.readFully(debug_extension);
H A DSourceFile_attribute.java39 SourceFile_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
41 sourcefile_index = cr.readUnsignedShort();
H A DSourceID_attribute.java37 SourceID_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
39 sourceID_index = cr.readUnsignedShort();
H A DStackMap_attribute.java37 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 DSynthetic_attribute.java39 Synthetic_attribute(ClassReader cr, int name_index, int length) throws IOException { argument
H A DLineNumberTable_attribute.java39 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 DTrace.c35 J2dTraceImpl(int level, jboolean cr, const char *string, ...) argument
42 if (cr) {
68 if (cr) {

Completed in 37 milliseconds

123