HomeSort by relevance Sort by last modified time
    Searched defs:ExceptionWithContext (Results 1 - 25 of 35) 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...]
  /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 33 import org.jf.dexlib.Util.ExceptionWithContext;
91 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 33 import org.jf.dexlib.Util.ExceptionWithContext;
158 throw ExceptionWithContext.withContext(ex,
172 throw ExceptionWithContext.withContext(ex,
186 throw 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...]
  /libcore/dex/src/main/java/com/android/dex/util/
ExceptionWithContext.java 25 public class ExceptionWithContext extends RuntimeException {
32 * {@link ExceptionWithContext}, or a newly-constructed exception if it
39 public static ExceptionWithContext withContext(Throwable ex, String str) {
40 ExceptionWithContext ewc;
42 if (ex instanceof ExceptionWithContext) {
43 ewc = (ExceptionWithContext) ex;
45 ewc = new ExceptionWithContext(ex);
57 public ExceptionWithContext(String message) {
66 public ExceptionWithContext(Throwable cause) {
76 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 19 import com.android.dex.util.ExceptionWithContext;
76 throw ExceptionWithContext.withContext(ex,
OffsettedItem.java 19 import com.android.dex.util.ExceptionWithContext;
174 throw ExceptionWithContext.withContext(ex,
CodeItem.java 19 import com.android.dex.util.ExceptionWithContext;
294 throw ExceptionWithContext.withContext(ex, "...while writing " +
MixedItemSection.java 19 import com.android.dex.util.ExceptionWithContext;
320 throw ExceptionWithContext.withContext(ex,
DebugInfoDecoder.java 21 import com.android.dex.util.ExceptionWithContext;
219 throw ExceptionWithContext.withContext(ex,
444 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 19 import com.android.dex.util.ExceptionWithContext;
156 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 19 import com.android.dex.util.ExceptionWithContext;
97 throw ExceptionWithContext.withContext(ex, msg);
202 throw ExceptionWithContext.withContext(ex, msg);
371 throw ExceptionWithContext.withContext(ex, msg);

Completed in 334 milliseconds

1 2