/dalvik/dx/src/com/android/dex/ |
DexException.java | 19 import com.android.dex.util.ExceptionWithContext; 25 public class DexException extends ExceptionWithContext {
|
/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...] |
MutabilityException.java | 23 extends ExceptionWithContext {
|
/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/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/dx/src/com/android/dx/cf/code/ |
SimException.java | 19 import com.android.dex.util.ExceptionWithContext; 25 extends ExceptionWithContext {
|
LocalsArray.java | 19 import com.android.dex.util.ExceptionWithContext; 57 public abstract void annotate(ExceptionWithContext ex);
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
ParseException.java | 19 import com.android.dex.util.ExceptionWithContext; 25 extends ExceptionWithContext {
|
/dalvik/dx/src/com/android/dx/util/ |
MutabilityException.java | 19 import com.android.dex.util.ExceptionWithContext; 25 extends ExceptionWithContext {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
AnalysisException.java | 34 import org.jf.util.ExceptionWithContext; 36 public class AnalysisException extends ExceptionWithContext {
|
UnresolvedClassException.java | 34 import org.jf.util.ExceptionWithContext; 36 public class UnresolvedClassException extends ExceptionWithContext {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
AnnotationVisibility.java | 34 import org.jf.util.ExceptionWithContext; 45 throw new ExceptionWithContext("Invalid annotation visibility %d", visibility); 61 throw new ExceptionWithContext("Invalid annotation visibility: %s", visibility);
|
ReferenceType.java | 35 import org.jf.util.ExceptionWithContext; 89 public static class InvalidReferenceTypeException extends ExceptionWithContext {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/ |
ImmutableReference.java | 36 import org.jf.util.ExceptionWithContext;
|
ImmutableReferenceFactory.java | 36 import org.jf.util.ExceptionWithContext; 58 throw new ExceptionWithContext("Invalid reference type"); 75 throw new ExceptionWithContext("Invalid reference type: %d", referenceType);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/ |
DexBackedReference.java | 37 import org.jf.util.ExceptionWithContext; 55 throw new ExceptionWithContext("Invalid reference type: %d", referenceType);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
BaseIndexPool.java | 36 import org.jf.util.ExceptionWithContext; 52 throw new ExceptionWithContext("Item not found.: %s", getItemString(key));
|
BaseOffsetPool.java | 36 import org.jf.util.ExceptionWithContext; 52 throw new ExceptionWithContext("Item not found.: %s", getItemString(key));
|
StringPool.java | 36 import org.jf.util.ExceptionWithContext; 55 throw new ExceptionWithContext("Item not found.: %s", key.toString());
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
InstructionOffsetMap.java | 35 import org.jf.util.ExceptionWithContext; 80 public static class InvalidInstructionOffset extends ExceptionWithContext { 93 public static class InvalidInstructionIndex extends ExceptionWithContext {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/ |
DexBackedArrayPayload.java | 38 import org.jf.util.ExceptionWithContext; 60 throw new ExceptionWithContext("Invalid array-payload instruction: element width*count overflows"); 109 throw new ExceptionWithContext("Invalid element width: %d", elementWidth);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
BaseDexBuffer.java | 34 import org.jf.util.ExceptionWithContext; 58 throw new ExceptionWithContext("Encountered small uint that is out of range at offset 0x%x", offset); 71 throw new ExceptionWithContext("Encountered optional uint that is out of range at offset 0x%x", offset); 112 throw new ExceptionWithContext("Encountered out-of-range ulong at offset 0x%x", offset);
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
StdConstantPool.java | 19 import com.android.dexgen.util.ExceptionWithContext; 133 * @throws ExceptionWithContext always thrown 136 throw new ExceptionWithContext("invalid constant pool index " +
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
StdConstantPool.java | 19 import com.android.dex.util.ExceptionWithContext; 142 * @throws ExceptionWithContext always thrown 145 throw new ExceptionWithContext("invalid constant pool index " +
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/ |
DebugMethodItem.java | 38 import org.jf.util.ExceptionWithContext; 68 throw new ExceptionWithContext("Invalid debug item type: %d", debugItem.getDebugItemType());
|