OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_descriptor_index
(Results
1 - 4
of
4
) sorted by null
/external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_NameAndType_info.java
42
public int
m_descriptor_index
;
field in class:CONSTANT_NameAndType_info
48
m_descriptor_index
= descriptor_index;
63
return ((CONSTANT_Utf8_info) cls.getConstants ().get (
m_descriptor_index
)).m_value;
75
return "CONSTANT_NameAndType: [name_index = " + m_name_index + ", descriptor_index = " +
m_descriptor_index
+ ']';
87
out.writeU2 (
m_descriptor_index
);
96
m_descriptor_index
= bytes.readU2 ();
/external/emma/core/java12/com/vladium/jcd/cls/
Field_info.java
59
public int
m_descriptor_index
;
field in class:Field_info
69
m_descriptor_index
= descriptor_index;
81
m_descriptor_index
= bytes.readU2 ();
116
return ((CONSTANT_Utf8_info) cls.getConstants ().get (
m_descriptor_index
)).m_value;
144
return "field_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " +
m_descriptor_index
+ ']';
178
out.writeU2 (
m_descriptor_index
);
Method_info.java
61
public int
m_descriptor_index
;
field in class:Method_info
69
m_descriptor_index
= descriptor_index;
82
m_descriptor_index
= bytes.readU2 ();
117
return ((CONSTANT_Utf8_info) cls.getConstants ().get (
m_descriptor_index
)).m_value;
163
s.append ("method_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " +
m_descriptor_index
+ "]\n");
204
out.writeU2 (
m_descriptor_index
);
ClassDef.java
607
final CONSTANT_NameAndType_info nametype = new CONSTANT_NameAndType_info (field.m_name_index, field.
m_descriptor_index
);
624
final CONSTANT_NameAndType_info nametype = new CONSTANT_NameAndType_info (field.m_name_index, field.
m_descriptor_index
);
Completed in 992 milliseconds