Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 8 of 8) 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.java380 public void annotate(String msg) { in annotate() argument
386 annotations.add(new Annotation(cursor, msg)); in annotate()
391 public void annotate(int amt, String msg) { in annotate() argument
408 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.java104 String msg = "...while processing " + cf.getFilePath(); in translate()
105 throw ExceptionWithContext.withContext(ex, msg); in translate()
225 String msg = "...while processing " + one.getName().toHuman() + in processFields()
227 throw ExceptionWithContext.withContext(ex, msg); in processFields()
396 String msg = "...while processing " + one.getName().toHuman() + in processMethods()
398 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.java254 private static TypeBearer throwSimException(int idx, String msg) { in throwSimException() argument
255 throw new SimException("local " + Hex.u2(idx) + ": " + msg); in throwSimException()
/dalvik/dx/src/com/android/dex/
DTableOfContents.java81 String msg = in readHeader() local
86 throw new DexException(msg); in readHeader()