HomeSort by relevance Sort by last modified time
    Searched defs:getElementValueType (Results 1 - 8 of 8) sorted by null

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
SimpleElementValueGen.java 119 super(value.getElementValueType(), cpool);
128 switch (value.getElementValueType())
166 "SimpleElementValueGen class does not know how to copy this type " + super.getElementValueType());
177 return new SimpleElementValue(super.getElementValueType(), idx, getConstantPool().getConstantPool());
187 if (super.getElementValueType() != STRING) {
197 if (super.getElementValueType() != PRIMITIVE_INT) {
209 switch (super.getElementValueType())
243 "SimpleElementValueGen class does not know how to stringify type " + super.getElementValueType());
250 dos.writeByte(super.getElementValueType()); // u1 kind of value
251 switch (super.getElementValueType())
    [all...]
AnnotationElementValueGen.java 61 dos.writeByte(super.getElementValueType()); // u1 type of value (ANNOTATION == '@')
77 return new AnnotationElementValue(super.getElementValueType(),
ClassElementValueGen.java 56 return new ClassElementValue(super.getElementValueType(),
100 dos.writeByte(super.getElementValueType()); // u1 kind of value
EnumElementValueGen.java 46 if (super.getElementValueType() != ENUM_CONSTANT) {
48 "Only element values of type enum can be built with this ctor - type specified: " + super.getElementValueType());
62 return new EnumElementValue(super.getElementValueType(), typeIdx, valueIdx,
94 dos.writeByte(super.getElementValueType()); // u1 type of value (ENUM_CONSTANT == 'e')
ArrayElementValueGen.java 68 return new ArrayElementValue(super.getElementValueType(),
91 dos.writeByte(super.getElementValueType()); // u1 type of value (ARRAY == '[')
ElementValueGen.java 60 public int getElementValueType()
165 switch (value.getElementValueType())
191 throw new RuntimeException("Not implemented yet! (" + value.getElementValueType() + ")");
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
ElementValue.java 54 public int getElementValueType()
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 

Completed in 720 milliseconds