Searched refs:msg (Results 1 – 7 of 7) sorted by relevance
/dalvik/dx/src/com/android/dx/util/ |
D | AnnotatedOutput.java | 49 public void annotate(String msg); in annotate() argument 62 public void annotate(int amt, String msg); in annotate() argument
|
D | ByteArrayAnnotatedOutput.java | 363 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/ |
D | AnnotatedOutput.java | 49 public void annotate(String msg); in annotate() argument 62 public void annotate(int amt, String msg); in annotate() argument
|
D | ByteArrayAnnotatedOutput.java | 367 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/ |
D | CfTranslator.java | 95 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/ |
D | ExecutionStack.java | 340 private static TypeBearer throwSimException(String msg) { in throwSimException() argument 341 throw new SimException("stack: " + msg); in throwSimException()
|
D | OneLocalsArray.java | 242 private static TypeBearer throwSimException(int idx, String msg) { in throwSimException() argument 243 throw new SimException("local " + Hex.u2(idx) + ": " + msg); in throwSimException()
|