HomeSort by relevance Sort by last modified time
    Searched refs:ConstantPoolGen (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
LoadClass.java 34 ObjectType getLoadClassType( ConstantPoolGen cpg );
47 * @see #getLoadClassType(ConstantPoolGen)
49 Type getType( ConstantPoolGen cpg );
StackConsumer.java 29 int consumeStack( ConstantPoolGen cpg );
StackProducer.java 30 int produceStack( ConstantPoolGen cpg );
TypedInstruction.java 28 Type getType( ConstantPoolGen cpg );
FieldInstruction.java 57 protected int getFieldSize( final ConstantPoolGen cpg ) {
65 public Type getType( final ConstantPoolGen cpg ) {
72 public Type getFieldType( final ConstantPoolGen cpg ) {
79 public String getFieldName( final ConstantPoolGen cpg ) {
StackInstruction.java 45 public Type getType( final ConstantPoolGen cp ) {
PUSH.java 39 public PUSH(final ConstantPoolGen cp, final int value) {
56 public PUSH(final ConstantPoolGen cp, final boolean value) {
65 public PUSH(final ConstantPoolGen cp, final float value) {
82 public PUSH(final ConstantPoolGen cp, final long value) {
97 public PUSH(final ConstantPoolGen cp, final double value) {
112 public PUSH(final ConstantPoolGen cp, final String value) {
126 public PUSH(final ConstantPoolGen cp, final ObjectType value) {
138 public PUSH(final ConstantPoolGen cp, final Number value) {
160 public PUSH(final ConstantPoolGen cp, final Character value) {
169 public PUSH(final ConstantPoolGen cp, final Boolean value)
    [all...]
InvokeInstruction.java 69 public int consumeStack( final ConstantPoolGen cpg ) {
89 public int produceStack( final ConstantPoolGen cpg ) {
102 public String getClassName( final ConstantPoolGen cpg ) {
112 public Type getType( final ConstantPoolGen cpg ) {
119 public String getMethodName( final ConstantPoolGen cpg ) {
126 public Type getReturnType( final ConstantPoolGen cpg ) {
133 public Type[] getArgumentTypes( final ConstantPoolGen cpg ) {
ElementValuePairGen.java 36 private final ConstantPoolGen cpool;
38 public ElementValuePairGen(final ElementValuePair nvp, final ConstantPoolGen cpool,
72 final ConstantPoolGen cpool)
80 final ConstantPoolGen cpool)
FieldOrMethod.java 52 public String getSignature( final ConstantPoolGen cpg ) {
62 public String getName( final ConstantPoolGen cpg ) {
77 * the {@link #getReferenceType(ConstantPoolGen)} method, which correctly distinguishes
82 public String getClassName( final ConstantPoolGen cpg ) {
100 public ObjectType getClassType( final ConstantPoolGen cpg ) {
108 * @param cpg the ConstantPoolGen used to create the instruction
113 public ReferenceType getReferenceType( final ConstantPoolGen cpg ) {
132 public ObjectType getLoadClassType( final ConstantPoolGen cpg ) {
ACONST_NULL.java 39 public Type getType( final ConstantPoolGen cp ) {
DCMPG.java 35 public Type getType( final ConstantPoolGen cp ) {
DCMPL.java 35 public Type getType( final ConstantPoolGen cp ) {
FCMPG.java 36 public Type getType( final ConstantPoolGen cp ) {
FCMPL.java 36 public Type getType( final ConstantPoolGen cp ) {
LCMP.java 37 public Type getType( final ConstantPoolGen cp ) {
AnnotationElementValueGen.java 34 public AnnotationElementValueGen(final AnnotationEntryGen a, final ConstantPoolGen cpool)
41 final ConstantPoolGen cpool)
52 final ConstantPoolGen cpool, final boolean copyPoolEntries)
ClassElementValueGen.java 37 protected ClassElementValueGen(final int typeIdx, final ConstantPoolGen cpool)
43 public ClassElementValueGen(final ObjectType t, final ConstantPoolGen cpool)
61 public ClassElementValueGen(final ClassElementValue value, final ConstantPoolGen cpool,
NameSignatureInstruction.java 42 public ConstantNameAndType getNameAndType(final ConstantPoolGen cpg) {
49 public String getSignature(final ConstantPoolGen cpg) {
57 public String getName(final ConstantPoolGen cpg) {
ElementValueGen.java 47 protected ConstantPoolGen cpGen;
49 protected ElementValueGen(final int type, final ConstantPoolGen cpGen)
96 final ConstantPoolGen cpGen) throws IOException
153 protected ConstantPoolGen getConstantPool()
163 final ConstantPoolGen cpool, final boolean copyPoolEntries)
SimpleElementValueGen.java 47 protected SimpleElementValueGen(final int type, final int idx, final ConstantPoolGen cpGen)
53 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final int value)
59 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final long value)
65 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final double value)
71 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final float value)
77 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final short value)
83 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final byte value)
89 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final char value)
95 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final boolean value)
105 public SimpleElementValueGen(final int type, final ConstantPoolGen cpGen, final String value
    [all...]
ArrayElementValueGen.java 37 public ArrayElementValueGen(final ConstantPoolGen cp)
44 final ConstantPoolGen cpool)
77 public ArrayElementValueGen(final ArrayElementValue value, final ConstantPoolGen cpool,
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/classfile/
ConstantPoolTestCase.java 21 import org.apache.bcel.generic.ConstantPoolGen;
31 final ConstantPoolGen cp = new ConstantPoolGen(clazz.getConstantPool());
44 private InstructionHandle[] getInstructionHandles(final JavaClass clazz, final ConstantPoolGen cp, final Method method) {
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/
ElementValueGenTestCase.java 29 import org.apache.bcel.generic.ConstantPoolGen;
49 final ConstantPoolGen cp = cg.getConstantPool();
63 final ConstantPoolGen cp = cg.getConstantPool();
77 final ConstantPoolGen cp = cg.getConstantPool();
91 final ConstantPoolGen cp = cg.getConstantPool();
105 final ConstantPoolGen cp = cg.getConstantPool();
119 final ConstantPoolGen cp = cg.getConstantPool();
133 final ConstantPoolGen cp = cg.getConstantPool();
147 final ConstantPoolGen cp = cg.getConstantPool();
164 final ConstantPoolGen cp = cg.getConstantPool()
    [all...]
  /external/apache-commons-bcel/src/examples/
maxstack.java 23 import org.apache.bcel.generic.ConstantPoolGen;
42 ConstantPoolGen cp = new ConstantPoolGen(java_class.getConstantPool());

Completed in 764 milliseconds

1 2 3 4