Searched refs:SimException (Results 1 - 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
H A DSimException.java24 public class SimException class in inherits:ExceptionWithContext
26 public SimException(String message) { method in class:SimException
30 public SimException(Throwable cause) { method in class:SimException
34 public SimException(String message, Throwable cause) { method in class:SimException
H A DBaseMachine.java148 throw new SimException("at stack depth " + (size - 1 - i) +
161 throw new SimException("expected type " + type.toHuman() +
174 throw new SimException("expected type " + type1.toHuman() +
179 throw new SimException("expected type " + type2.toHuman() +
193 throw new SimException("expected type " + type1.toHuman() +
198 throw new SimException("expected type " + type2.toHuman() +
203 throw new SimException("expected type " + type3.toHuman() +
400 throw new SimException("local target with " +
486 throw new SimException("results never set");
537 throw new SimException("result
[all...]
H A DMerger.java53 throw new SimException("mismatched maxLocals values");
105 throw new SimException("mismatched stack depths");
124 throw new SimException("incompatible: " + tb1 + ", " +
129 } catch (SimException ex) {
H A DExecutionStack.java151 * @throws SimException thrown if there is insufficient room on the
198 * @throws SimException thrown if {@code n >= size()}
218 * @throws SimException thrown if {@code n >= size()}
226 throw new SimException("stack: underflow");
248 * @throws SimException thrown if the stack is empty
271 * @throws SimException thrown if {@code n >= size()} or
309 } catch (SimException ex) {
341 throw new SimException("stack: " + msg);
H A DOneLocalsArray.java211 } catch (SimException ex) {
243 throw new SimException("local " + Hex.u2(idx) + ": " + msg);
H A DSimulator.java98 } catch (SimException ex) {
121 private static SimException illegalTos() {
122 return new SimException("stack mismatch: illegal " +
226 throw new SimException("invalid opcode " + Hex.u1(opcode));
297 throw new SimException("type mismatch: expected " +
540 throw new SimException("return type mismatch: prototype " +
H A DLocalsArraySet.java283 } catch (SimException ex) {
324 } catch (SimException ex) {
353 } catch (SimException ex) {
H A DBytecodeArray.java806 } catch (SimException ex) {
810 SimException se = new SimException(ex);
839 throw new SimException("low / high inversion");
941 throw new SimException("bad newarray code " +
H A DBasicBlocker.java349 throw new SimException("flow of control falls off " +
H A DRopper.java268 } catch (SimException ex) {
654 } catch (SimException ex) {
773 } catch (SimException ex) {
832 } catch (SimException ex) {
H A DRopperMachine.java738 throw new SimException("return op mismatch: " + op + ", " +
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java24 import com.android.dx.cf.code.SimException;
578 } else if (ex instanceof SimException) {
581 DxConsole.err.println(((SimException) ex).getContext());

Completed in 186 milliseconds