HomeSort by relevance Sort by last modified time
    Searched defs:ExceptionWithContext (Results 1 - 25 of 34) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/util/
ExceptionWithContext.java 25 public class ExceptionWithContext
33 * {@link ExceptionWithContext}, or a newly-constructed exception if it
40 public static ExceptionWithContext withContext(Throwable ex, String str) {
41 ExceptionWithContext ewc;
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
58 public ExceptionWithContext(String message) {
67 public ExceptionWithContext(Throwable cause) {
77 public ExceptionWithContext(String message, Throwable cause)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ExceptionWithContext.java 25 public class ExceptionWithContext
33 * {@link ExceptionWithContext}, or a newly-constructed exception if it
40 public static ExceptionWithContext withContext(Throwable ex, String str) {
41 ExceptionWithContext ewc;
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
58 public ExceptionWithContext(String message) {
67 public ExceptionWithContext(Throwable cause) {
77 public ExceptionWithContext(String message, Throwable cause)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ExceptionWithContext.java 25 public class ExceptionWithContext
33 * {@link ExceptionWithContext}, or a newly-constructed exception if it
40 public static ExceptionWithContext withContext(Throwable ex, String str) {
41 ExceptionWithContext ewc;
43 if (ex instanceof ExceptionWithContext) {
44 ewc = (ExceptionWithContext) ex;
46 ewc = new ExceptionWithContext(ex);
58 public ExceptionWithContext(String message) {
67 public ExceptionWithContext(Throwable cause) {
77 public ExceptionWithContext(String message, Throwable cause)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
InstructionIterator.java 36 import org.jf.dexlib.Util.ExceptionWithContext;
87 throw ExceptionWithContext.withContext(ex, "Error occured at code address " + insnsPosition * 2);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 31 import org.jf.dexlib.Util.ExceptionWithContext;
77 throw ExceptionWithContext.withContext(ex, "Error occured while retrieving the " + this.ItemType.TypeName +
AnnotationDirectoryItem.java 32 import org.jf.dexlib.Util.ExceptionWithContext;
187 throw ExceptionWithContext.withContext(ex,
198 throw ExceptionWithContext.withContext(ex,
209 throw ExceptionWithContext.withContext(ex,
353 throw addExceptionContext(ExceptionWithContext.withContext(ex,
380 throw addExceptionContext(ExceptionWithContext.withContext(ex,
407 throw addExceptionContext(ExceptionWithContext.withContext(ex,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ExceptionWithContext.java 33 public class ExceptionWithContext
41 * {@link ExceptionWithContext}, or a newly-constructed exception if it
48 public static ExceptionWithContext withContext(Throwable ex, String str) {
49 ExceptionWithContext ewc;
51 if (ex instanceof ExceptionWithContext) {
52 ewc = (ExceptionWithContext) ex;
54 ewc = new ExceptionWithContext(ex);
66 public ExceptionWithContext(String message) {
75 public ExceptionWithContext(Throwable cause) {
85 public ExceptionWithContext(String message, Throwable cause)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoItem.java 27 import com.android.dexgen.util.ExceptionWithContext;
79 throw ExceptionWithContext.withContext(ex,
OffsettedItem.java 20 import com.android.dexgen.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
CodeItem.java 34 import com.android.dexgen.util.ExceptionWithContext;
303 throw ExceptionWithContext.withContext(ex, "...while writing " +
MixedItemSection.java 20 import com.android.dexgen.util.ExceptionWithContext;
321 throw ExceptionWithContext.withContext(ex,
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 25 import com.android.dx.util.ExceptionWithContext;
77 throw ExceptionWithContext.withContext(ex,
OffsettedItem.java 20 import com.android.dx.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
CodeItem.java 34 import com.android.dx.util.ExceptionWithContext;
303 throw ExceptionWithContext.withContext(ex, "...while writing " +
MixedItemSection.java 20 import com.android.dx.util.ExceptionWithContext;
321 throw ExceptionWithContext.withContext(ex,
DebugInfoDecoder.java 30 import com.android.dx.util.ExceptionWithContext;
209 throw ExceptionWithContext.withContext(ex,
434 throw ExceptionWithContext.withContext(ex,
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoItem.java 25 import com.android.dx.util.ExceptionWithContext;
77 throw ExceptionWithContext.withContext(ex,
OffsettedItem.java 20 import com.android.dx.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
CodeItem.java 34 import com.android.dx.util.ExceptionWithContext;
303 throw ExceptionWithContext.withContext(ex, "...while writing " +
MixedItemSection.java 20 import com.android.dx.util.ExceptionWithContext;
321 throw ExceptionWithContext.withContext(ex,
DebugInfoDecoder.java 30 import com.android.dx.util.ExceptionWithContext;
209 throw ExceptionWithContext.withContext(ex,
434 throw ExceptionWithContext.withContext(ex,
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 22 import com.android.dexgen.util.ExceptionWithContext;
156 throw ExceptionWithContext.withContext(ex,
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 23 import com.android.dx.util.ExceptionWithContext;
157 throw ExceptionWithContext.withContext(ex,
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 23 import com.android.dx.util.ExceptionWithContext;
157 throw ExceptionWithContext.withContext(ex,
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 56 import com.android.dx.util.ExceptionWithContext;
90 throw ExceptionWithContext.withContext(ex, msg);
176 throw ExceptionWithContext.withContext(ex, msg);
344 throw ExceptionWithContext.withContext(ex, msg);

Completed in 6289 milliseconds

1 2