/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | ClassGenException.java | 26 public class ClassGenException extends RuntimeException { class 30 public ClassGenException() { in ClassGenException() method in ClassGenException 35 public ClassGenException(final String s) { in ClassGenException() method in ClassGenException 39 public ClassGenException(final String s, final Throwable initCause) { in ClassGenException() method in ClassGenException
|
D | InstructionList.java | 184 throw new ClassGenException(e.toString(), e); in InstructionList() 200 throw new ClassGenException("Couldn't find target for branch: " + bi); in InstructionList() 211 throw new ClassGenException("Couldn't find target for switch: " + bi); in InstructionList() 231 throw new ClassGenException("Appending null InstructionList"); in append() 263 throw new ClassGenException("Instruction " + i + " is not contained in this list."); in append() 277 throw new ClassGenException("Appending null InstructionList"); in append() 428 throw new ClassGenException("Inserting null InstructionList"); in insert() 494 throw new ClassGenException("Instruction " + i + " is not contained in this list."); in insert() 620 throw new ClassGenException("Invalid null handle: From " + start + " to " + end); in move() 623 …throw new ClassGenException("Invalid range: From " + start + " to " + end + " contains target " + … in move() [all …]
|
D | BranchInstruction.java | 81 throw new ClassGenException("Branch target offset too large for short: " + index); in dump() 93 throw new ClassGenException("Target of " + super.toString(true) in getTargetOffset() 98 throw new ClassGenException("Invalid branch target position offset for " in getTargetOffset() 233 throw new ClassGenException("Not targeting " + old_ih + ", but " + target); in updateTarget()
|
D | BasicType.java | 38 throw new ClassGenException("Invalid type: " + type); in BasicType() 65 throw new ClassGenException("Invalid type: " + type); in getType()
|
D | ArrayType.java | 61 throw new ClassGenException("Invalid number of dimensions: " + dimensions); in ArrayType() 70 throw new ClassGenException("Invalid type: void[]"); in ArrayType()
|
D | LocalVariableInstruction.java | 168 throw new ClassGenException("Illegal value: " + n); in setIndex() 220 throw new ClassGenException("Oops: unknown case in switch" + canon_tag); in getType()
|
D | InstructionHandle.java | 82 throw new ClassGenException("Assigning null to handle"); in setInstruction() 85 throw new ClassGenException("Assigning branch instruction " + i + " to plain handle"); in setInstruction()
|
D | FieldGen.java | 201 throw new ClassGenException("You haven't defined the type of the field yet"); in checkType() 204 throw new ClassGenException("Only final fields may have an initial value!"); in checkType() 207 throw new ClassGenException("Types are not compatible: " + superType + " vs. " + atype); in checkType()
|
D | LocalVariableGen.java | 57 throw new ClassGenException("Invalid index index: " + index); in LocalVariableGen() 205 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " + end in updateTarget()
|
D | Select.java | 102 … throw new ClassGenException("Match and target array have not the same length: Match length: " + in Select() 212 throw new ClassGenException("Not targeting " + old_ih); in updateTarget()
|
D | InstructionTargeter.java | 44 void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) throws ClassGenException; in updateTarget()
|
D | ICONST.java | 45 throw new ClassGenException("ICONST can be used only for value between -1 and 5: " + i); in ICONST()
|
D | DCONST.java | 47 throw new ClassGenException("DCONST can be used only for 0.0 and 1.0: " + f); in DCONST()
|
D | LCONST.java | 47 throw new ClassGenException("LCONST can be used only for 0 and 1: " + l); in LCONST()
|
D | ReturnInstruction.java | 63 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | FCONST.java | 49 throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f); in FCONST()
|
D | ConversionInstruction.java | 75 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | LineNumberGen.java | 63 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}"); in updateTarget()
|
D | BranchHandle.java | 125 throw new ClassGenException("Assigning " + i in setInstruction()
|
D | ArithmeticInstruction.java | 93 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | RET.java | 111 throw new ClassGenException("Negative index value: " + n); in setIndex()
|
D | Instruction.java | 465 throw new ClassGenException("Illegal opcode detected: " + opcode); in readInstruction() 471 throw new ClassGenException("Illegal opcode after wide: " + opcode); in readInstruction()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/ |
D | BranchHandleTestCase.java | 26 @Test(expected=ClassGenException.class) 42 @Test(expected=ClassGenException.class) 50 @Test(expected=ClassGenException.class)
|
D | InstructionHandleTestCase.java | 27 @Test(expected=ClassGenException.class) 43 @Test(expected=ClassGenException.class) 51 @Test(expected=ClassGenException.class)
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | InstructionFinder.java | 30 import org.apache.bcel.generic.ClassGenException; 216 throw new ClassGenException("Instruction handle " + from in search()
|