Searched defs:ex (Results 1 - 9 of 9) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DExceptionWithContext.java36 * @param ex {@code non-null;} the exception to augment
40 public static ExceptionWithContext withContext(Throwable ex, String str) { argument
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
/dalvik/dx/src/com/android/dx/util/
H A DExceptionWithContext.java36 * @param ex {@code non-null;} the exception to augment
40 public static ExceptionWithContext withContext(Throwable ex, String str) { argument
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalsArray.java56 * @param ex {@code non-null;} the exception to annotate
58 public abstract void annotate(ExceptionWithContext ex); argument
H A DExecutionStack.java79 * @param ex {@code non-null;} the exception to annotate
81 public void annotate(ExceptionWithContext ex) { argument
87 ex.addContext("stack[" + idx + "]: " +
162 } catch (NullPointerException ex) {
279 } catch (NullPointerException ex) {
309 } catch (SimException ex) {
310 ex.addContext("underlay stack:");
311 this.annotate(ex);
312 ex.addContext("overlay stack:");
313 other.annotate(ex);
[all...]
H A DFrame.java195 } catch (IndexOutOfBoundsException ex) {
197 } catch (NullPointerException ex) {
409 * @param ex {@code non-null;} the exception to annotate
411 public void annotate(ExceptionWithContext ex) { argument
412 locals.annotate(ex);
413 stack.annotate(ex);
H A DLocalsArraySet.java125 public void annotate(ExceptionWithContext ex) { argument
126 ex.addContext("(locals array set; primary)");
127 primary.annotate(ex);
134 ex.addContext("(locals array set: primary for caller "
137 la.getPrimary().annotate(ex);
285 } catch (SimException ex) {
286 ex.addContext(
326 } catch (SimException ex) {
327 ex.addContext("Merging one locals against caller block "
355 } catch (SimException ex) {
[all...]
H A DOneLocalsArray.java59 public void annotate(ExceptionWithContext ex) { argument
63 ex.addContext("locals[" + Hex.u2(i) + "]: " + s);
111 } catch (NullPointerException ex) {
212 } catch (SimException ex) {
213 ex.addContext("underlay locals:");
214 annotate(ex);
215 ex.addContext("overlay locals:");
216 other.annotate(ex);
217 throw ex;
/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java73 * @param ex {@code non-null;} exception
75 void onException(Exception ex); argument
136 } catch (Exception ex) {
137 consumer.onException(ex);
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 178 milliseconds