Home
last modified time | relevance | path

Searched refs:StackMapType (Results 1 – 2 of 2) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DStackMapEntry.java39 private StackMapType[] types_of_locals;
40 private StackMapType[] types_of_stack_items;
58 types_of_stack_items = new StackMapType[1]; in StackMapEntry()
59 types_of_stack_items[0] = new StackMapType(input, constantPool); in StackMapEntry()
62 types_of_stack_items = new StackMapType[1]; in StackMapEntry()
63 types_of_stack_items[0] = new StackMapType(input, constantPool); in StackMapEntry()
71 types_of_locals = new StackMapType[number_of_locals]; in StackMapEntry()
73 types_of_locals[i] = new StackMapType(input, constantPool); in StackMapEntry()
78 types_of_locals = new StackMapType[number_of_locals]; in StackMapEntry()
80 types_of_locals[i] = new StackMapType(input, constantPool); in StackMapEntry()
[all …]
DStackMapType.java35 public final class StackMapType implements Cloneable { class
47 StackMapType(final DataInput file, final ConstantPool constant_pool) throws IOException { in StackMapType() method in StackMapType
60 public StackMapType(final byte type, final int index, final ConstantPool constant_pool) { in StackMapType() method in StackMapType
143 public StackMapType copy() { in copy()
145 return (StackMapType) clone(); in copy()