HomeSort by relevance Sort by last modified time
    Searched refs:CONSTANT_Utf8_info (Results 1 - 13 of 13) sorted by null

  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
SourceFileAttribute_info.java 14 import com.vladium.jcd.cls.constant.CONSTANT_Utf8_info;
43 public CONSTANT_Utf8_info getSourceFile (final ClassDef cls)
45 return (CONSTANT_Utf8_info) cls.getConstants ().get (m_sourcefile_index);
Attribute_info.java 39 * attribute_name_index must be a {@link com.vladium.jcd.cls.constant.CONSTANT_Utf8_info}
64 * Constant pool index for {@link com.vladium.jcd.cls.constant.CONSTANT_Utf8_info}
78 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
112 final CONSTANT_Utf8_info attribute_name = (CONSTANT_Utf8_info) constants.get (attribute_name_index);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Utf8_info.java 7 * $Id: CONSTANT_Utf8_info.java,v 1.1.1.1 2004/05/09 16:57:49 vlad_r Exp $
18 * The CONSTANT_Utf8_info structure is used to represent constant string values.<P>
31 final class CONSTANT_Utf8_info extends CONSTANT_info
40 public CONSTANT_Utf8_info (final String value)
77 protected CONSTANT_Utf8_info (final UDataInputStream bytes) throws IOException
CONSTANT_info.java 67 case CONSTANT_Utf8_info.TAG:
68 return new CONSTANT_Utf8_info (bytes);
137 case CONSTANT_Utf8_info.TAG:
CONSTANT_NameAndType_info.java 23 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
28 * pool table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
63 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
CONSTANT_Class_info.java 22 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
ICONSTANTVisitor.java 34 Object visit (CONSTANT_Utf8_info constant, Object ctx);
  /external/emma/core/java12/com/vladium/jcd/cls/
Field_info.java 14 import com.vladium.jcd.cls.constant.CONSTANT_Utf8_info;
36 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
42 * {@link CONSTANT_Utf8_info} structure which must represent a valid Java field
104 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
116 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
ConstantCollection.java 153 if (result instanceof CONSTANT_Utf8_info)
155 final String mapKey = ((CONSTANT_Utf8_info) result).m_value;
163 if (constant instanceof CONSTANT_Utf8_info)
164 m_CONSTANT_Utf8_index.put (((CONSTANT_Utf8_info) constant).m_value, zindex);
183 if ((m_CONSTANT_Utf8_index != null) && (constant instanceof CONSTANT_Utf8_info))
184 m_CONSTANT_Utf8_index.put (((CONSTANT_Utf8_info) constant).m_value, result /* !!! */ - 1);
284 if ((constant != null) && (constant.tag () == CONSTANT_Utf8_info.TAG))
287 index.put (((CONSTANT_Utf8_info) constant).m_value, i); // note: unadjusted index saved here
Method_info.java 14 import com.vladium.jcd.cls.constant.CONSTANT_Utf8_info;
37 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
43 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
105 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
117 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
ClassDef.java 25 import com.vladium.jcd.cls.constant.CONSTANT_Utf8_info;
507 return m_constants.add (new CONSTANT_Utf8_info (value));
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 

Completed in 307 milliseconds