Searched defs:InvalidIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java41 public class InvalidIndex extends AttributeException { class in class:Code_attribute
43 InvalidIndex(int index) { method in class:Code_attribute.InvalidIndex
71 public int getByte(int offset) throws InvalidIndex {
73 throw new InvalidIndex(offset);
77 public int getUnsignedByte(int offset) throws InvalidIndex {
79 throw new InvalidIndex(offset);
83 public int getShort(int offset) throws InvalidIndex {
85 throw new InvalidIndex(offset);
89 public int getUnsignedShort(int offset) throws InvalidIndex {
91 throw new InvalidIndex(offse
[all...]
H A DConstantPool.java43 public static class InvalidIndex extends ConstantPoolException { class in class:ConstantPool
45 InvalidIndex(int index) { method in class:ConstantPool.InvalidIndex
254 public CPInfo get(int index) throws InvalidIndex {
256 throw new InvalidIndex(index);
261 throw new InvalidIndex(index);
266 private CPInfo get(int index, int expected_type) throws InvalidIndex, UnexpectedEntry {
273 public CONSTANT_Utf8_info getUTF8Info(int index) throws InvalidIndex, UnexpectedEntry {
277 public CONSTANT_Class_info getClassInfo(int index) throws InvalidIndex, UnexpectedEntry {
281 public CONSTANT_NameAndType_info getNameAndTypeInfo(int index) throws InvalidIndex, UnexpectedEntry {
285 public String getUTF8Value(int index) throws InvalidIndex, UnexpectedEntr
[all...]

Completed in 48 milliseconds