Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/util/
DAnnotatedOutput.java49 public void annotate(String msg); in annotate() argument
62 public void annotate(int amt, String msg); in annotate() argument
DByteArrayAnnotatedOutput.java363 public void annotate(String msg) { in annotate() argument
369 annotations.add(new Annotation(cursor, msg)); in annotate()
373 public void annotate(int amt, String msg) { in annotate() argument
390 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/dalvik/dexgen/src/com/android/dexgen/util/
DAnnotatedOutput.java49 public void annotate(String msg); in annotate() argument
62 public void annotate(int amt, String msg); in annotate() argument
DByteArrayAnnotatedOutput.java367 public void annotate(String msg) { in annotate() argument
373 annotations.add(new Annotation(cursor, msg)); in annotate()
377 public void annotate(int amt, String msg) { in annotate() argument
394 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java95 String msg = "...while processing " + cf.getFilePath(); in translate()
96 throw ExceptionWithContext.withContext(ex, msg); in translate()
197 String msg = "...while processing " + one.getName().toHuman() + in processFields()
199 throw ExceptionWithContext.withContext(ex, msg); in processFields()
367 String msg = "...while processing " + one.getName().toHuman() + in processMethods()
369 throw ExceptionWithContext.withContext(ex, msg); in processMethods()
/dalvik/dx/src/com/android/dx/cf/code/
DExecutionStack.java340 private static TypeBearer throwSimException(String msg) { in throwSimException() argument
341 throw new SimException("stack: " + msg); in throwSimException()
DOneLocalsArray.java242 private static TypeBearer throwSimException(int idx, String msg) { in throwSimException() argument
243 throw new SimException("local " + Hex.u2(idx) + ": " + msg); in throwSimException()