Home
last modified time | relevance | path

Searched refs:SimpleElementValueGen (Results 1 – 6 of 6) sorted by relevance

/external/apache-commons-bcel/src/test/java/org/apache/bcel/
DElementValueGenTestCase.java33 import org.apache.bcel.generic.SimpleElementValueGen;
50 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateIntegerElementValue()
64 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateFloatElementValue()
78 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateDoubleElementValue()
92 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateLongElementValue()
106 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateCharElementValue()
120 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateByteElementValue()
134 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateBooleanElementValue()
148 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateShortElementValue()
165 final SimpleElementValueGen evg = new SimpleElementValueGen( in testCreateStringElementValue()
DAbstractTestCase.java34 import org.apache.bcel.generic.SimpleElementValueGen;
200 final SimpleElementValueGen evg = new SimpleElementValueGen( in createFruitAnnotationEntry()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DElementValueGen.java102 return new SimpleElementValueGen(PRIMITIVE_BYTE, dis in readElementValue()
105 return new SimpleElementValueGen(PRIMITIVE_CHAR, dis in readElementValue()
108 return new SimpleElementValueGen(PRIMITIVE_DOUBLE, dis in readElementValue()
111 return new SimpleElementValueGen(PRIMITIVE_FLOAT, dis in readElementValue()
114 return new SimpleElementValueGen(PRIMITIVE_INT, dis in readElementValue()
117 return new SimpleElementValueGen(PRIMITIVE_LONG, dis in readElementValue()
120 return new SimpleElementValueGen(PRIMITIVE_SHORT, dis in readElementValue()
123 return new SimpleElementValueGen(PRIMITIVE_BOOLEAN, dis in readElementValue()
126 return new SimpleElementValueGen(STRING, dis.readUnsignedShort(), in readElementValue()
176 return new SimpleElementValueGen((SimpleElementValue) value, cpool, in copy()
DSimpleElementValueGen.java34 public class SimpleElementValueGen extends ElementValueGen class
47 protected SimpleElementValueGen(final int type, final int idx, final ConstantPoolGen cpGen) in SimpleElementValueGen() method in SimpleElementValueGen
53 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final int value) in SimpleElementValueGen() method in SimpleElementValueGen
59 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final long value) in SimpleElementValueGen() method in SimpleElementValueGen
65 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final double value) in SimpleElementValueGen() method in SimpleElementValueGen
71 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final float value) in SimpleElementValueGen() method in SimpleElementValueGen
77 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final short value) in SimpleElementValueGen() method in SimpleElementValueGen
83 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final byte value) in SimpleElementValueGen() method in SimpleElementValueGen
89 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final char value) in SimpleElementValueGen() method in SimpleElementValueGen
95 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final boolean value) in SimpleElementValueGen() method in SimpleElementValueGen
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DAnnotationGenTestCase.java52 final SimpleElementValueGen evg = new SimpleElementValueGen( in testConstructMutableAnnotation()
77 final SimpleElementValueGen evg = new SimpleElementValueGen( in testVisibleInvisibleAnnotationGen()
DGeneratingAnnotatedClassesTestCase.java349 if (((SimpleElementValueGen) element.getValue()) in testTransformComplexClassToClassGen()
634 final SimpleElementValueGen evg = new SimpleElementValueGen( in createSimpleVisibleAnnotation()
647 final SimpleElementValueGen evg = new SimpleElementValueGen( in createFruitAnnotation()
671 final SimpleElementValueGen evg = new SimpleElementValueGen( in createSimpleInvisibleAnnotation()