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

1 2 3 4

  /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/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...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedEncodedValue.java 39 import org.jf.util.ExceptionWithContext;
105 throw new ExceptionWithContext("Invalid encoded_value type: 0x%x", valueType);
108 throw ExceptionWithContext.withContext(ex, "Error while reading encoded value at offset 0x%x", startOffset);
147 throw new ExceptionWithContext("Invalid encoded_value type: 0x%x", valueType);
150 throw ExceptionWithContext.withContext(ex, "Error while skipping encoded value at offset 0x%x",
  /external/smali/util/src/main/java/org/jf/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, Object... formatArgs) {
49 ExceptionWithContext ewc;
51 if (ex instanceof ExceptionWithContext) {
52 ewc = (ExceptionWithContext) ex;
54 ewc = new ExceptionWithContext(ex);
66 public ExceptionWithContext(String message, Object... formatArgs) {
75 public ExceptionWithContext(Throwable cause) {
85 public ExceptionWithContext(Throwable cause, String message, Object... formatArgs)
    [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,
DebugInfoDecoder.java 28 import com.android.dexgen.util.ExceptionWithContext;
208 throw ExceptionWithContext.withContext(ex,
440 throw ExceptionWithContext.withContext(ex,
DexFile.java 29 import com.android.dexgen.util.ExceptionWithContext;
529 throw ExceptionWithContext.withContext(ex,
549 throw new ExceptionWithContext("excess write of " +
555 ExceptionWithContext ec;
556 if (ex instanceof ExceptionWithContext) {
557 ec = (ExceptionWithContext) ex;
559 ec = new ExceptionWithContext(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;
175 throw ExceptionWithContext.withContext(ex,
CodeItem.java 19 import com.android.dex.util.ExceptionWithContext;
296 throw ExceptionWithContext.withContext(ex, "...while writing " +
MixedItemSection.java 19 import com.android.dex.util.ExceptionWithContext;
321 throw ExceptionWithContext.withContext(ex,
DebugInfoDecoder.java 22 import com.android.dex.util.ExceptionWithContext;
220 throw ExceptionWithContext.withContext(ex,
445 throw ExceptionWithContext.withContext(ex,
DexFile.java 20 import com.android.dex.util.ExceptionWithContext;
682 throw ExceptionWithContext.withContext(ex,
706 throw new ExceptionWithContext("excess write of " +
712 ExceptionWithContext ec;
713 if (ex instanceof ExceptionWithContext) {
714 ec = (ExceptionWithContext) ex;
716 ec = new ExceptionWithContext(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;
160 throw ExceptionWithContext.withContext(ex,
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 19 import com.android.dex.util.ExceptionWithContext;
105 throw ExceptionWithContext.withContext(ex, msg);
227 throw ExceptionWithContext.withContext(ex, msg);
398 throw ExceptionWithContext.withContext(ex, msg);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 58 import org.jf.util.ExceptionWithContext;
159 throw ExceptionWithContext.withContext(ex, "Error while processing method");
161 throw ExceptionWithContext.withContext(ex, "Error while processing method %s", methodString);
564 throw new ExceptionWithContext(
628 public static class InvalidSwitchPayload extends ExceptionWithContext {
  /external/dexmaker/lib/
libcore-dex-2.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/2/
libcore-dex-2.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/7.1.0_r7/
libcore-dex-7.1.0_r7.jar 
  /prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 

Completed in 398 milliseconds

1 2 3 4