Home | History | Annotate | Download | only in cls

Lines Matching defs:m_constants

54         m_constants = ElementFactory.newConstantCollection (-1);
109 return (CONSTANT_Class_info) m_constants.get (m_this_class_index);
114 return (CONSTANT_Class_info) m_constants.get (m_super_class_index);
169 return m_constants;
215 _clone.m_constants = (IConstantCollection) m_constants.clone ();
241 m_constants.writeInClassFormat (out);
317 ifcs [i] = Types.vmNameToJavaName (((CONSTANT_Class_info) m_constants.get (interfaces.get (i))).getName (this));
498 final int existing = m_constants.findCONSTANT_Utf8 (value);
507 return m_constants.add (new CONSTANT_Utf8_info (value));
515 return m_constants.add (new CONSTANT_String_info (value_index));
523 return m_constants.add (new CONSTANT_NameAndType_info (name_index, descriptor_index));
532 return m_constants.add (new CONSTANT_Class_info (name_index));
608 final int nametype_index = m_constants.add (nametype); // TODO: unique logic
610 return m_constants.add (new CONSTANT_Fieldref_info (m_this_class_index, nametype_index));
625 final int nametype_index = m_constants.add (nametype); // TODO: unique logic
627 return m_constants.add (new CONSTANT_Fieldref_info (m_this_class_index, nametype_index));
721 private IConstantCollection m_constants;