HomeSort by relevance Sort by last modified time
    Searched refs:DexException (Results 1 - 24 of 24) sorted by null

  /dalvik/dx/src/com/android/dx/util/
DexException.java 23 public final class DexException extends ExceptionWithContext {
24 public DexException(String message) {
28 public DexException(Throwable cause) {
Leb128Utils.java 96 throw new DexException("invalid LEB128 sequence");
122 throw new DexException("invalid LEB128 sequence");
  /external/dexmaker/src/dx/java/com/android/dx/util/
DexException.java 23 public final class DexException extends ExceptionWithContext {
24 public DexException(String message) {
28 public DexException(Throwable cause) {
Leb128Utils.java 96 throw new DexException("invalid LEB128 sequence");
122 throw new DexException("invalid LEB128 sequence");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DexException.java 23 public final class DexException extends Exception {
26 DexException(String message) {
30 DexException(String message, Throwable cause) {
BuildHelper.java 696 * @throws DexException
700 throws CoreException, DexException {
759 throw new DexException(message);
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 22 import com.android.dx.util.DexException;
92 throw new DexException(ex);
172 throw new DexException("Target out of range: "
188 throw new DexException("Target out of range: "
205 throw new DexException("Literal out of range: " + Hex.u8(literal));
217 throw new DexException("Literal out of range: " + Hex.u8(literal));
229 throw new DexException("Literal out of range: " + Hex.u8(literal));
241 throw new DexException("Literal out of range: " + Hex.u8(literal));
277 throw new DexException("Register count out of range: "
292 throw new DexException("Register A out of range: " + Hex.u8(a))
    [all...]
InstructionCodec.java 22 import com.android.dx.util.DexException;
726 throw new DexException("bogus element_width: "
746 throw new DexException("bogus element_width: "
815 throw new DexException("bogus registerCount: "
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 22 import com.android.dx.util.DexException;
92 throw new DexException(ex);
172 throw new DexException("Target out of range: "
188 throw new DexException("Target out of range: "
205 throw new DexException("Literal out of range: " + Hex.u8(literal));
217 throw new DexException("Literal out of range: " + Hex.u8(literal));
229 throw new DexException("Literal out of range: " + Hex.u8(literal));
241 throw new DexException("Literal out of range: " + Hex.u8(literal));
277 throw new DexException("Register count out of range: "
292 throw new DexException("Register A out of range: " + Hex.u8(a))
    [all...]
InstructionCodec.java 22 import com.android.dx.util.DexException;
859 throw new DexException("bogus element_width: "
879 throw new DexException("bogus element_width: "
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MemberIdsSection.java 19 import com.android.dx.util.DexException;
46 throw new DexException("Too many " + memberType + ": " + items().size()
  /dalvik/dx/tests/119-merge-conflict/com/android/dx/merge/
MergeConflictTest.java 20 import com.android.dx.util.DexException;
38 } catch (DexException expected) {
  /dalvik/dx/src/com/android/dx/io/
CodeReader.java 20 import com.android.dx.util.DexException;
80 throws DexException {
93 public void visitAll(short[] encodedInstructions) throws DexException {
DexBuffer.java 27 import com.android.dx.util.DexException;
156 throw new DexException("Expected " + DexFormat.DEX_IN_JAR_NAME + " in " + file);
161 throw new DexException("unknown output extension: " + file);
393 throw new DexException("Declared length " + expectedLength
398 throw new DexException(e);
582 throw new DexException("Section limit " + limit + " exceeded by " + name);
657 throw new DexException("Section limit " + limit + " exceeded by " + name);
670 throw new DexException("Section limit " + limit + " exceeded by " + name);
  /external/dexmaker/src/dx/java/com/android/dx/io/
CodeReader.java 20 import com.android.dx.util.DexException;
80 throws DexException {
93 public void visitAll(short[] encodedInstructions) throws DexException {
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 19 import com.android.dx.util.DexException;
49 throw new DexException(tooManyMembersMessage());
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 23 import com.android.dx.util.DexException;
41 public short[] transform(short[] encodedInstructions) throws DexException {
108 throw new DexException("Cannot merge new index " + newIndex +
DexMerger.java 30 import com.android.dx.util.DexException;
592 throw new DexException("Multiple dex files define "
    [all...]
  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 20 import com.android.dx.util.DexException;
81 throw new DexException("Unexpected magic: " + Arrays.toString(magic));
89 throw new DexException("Unexpected header: 0x" + Integer.toHexString(headerSize));
93 throw new DexException("Unexpected endian tag: 0x" + Integer.toHexString(endianTag));
99 throw new DexException("Cannot merge dex files that do not contain a map");
129 throw new DexException("Unexpected map value for 0x" + Integer.toHexString(type));
136 throw new DexException("Map is unsorted at " + previous + ", " + section);
152 throw new DexException("Map is unsorted at " + section);
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 32 import com.android.dx.util.DexException;
533 throw new DexException("No expanded opcode for " + insn);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputFinisher.java 32 import com.android.dx.util.DexException;
526 throw new DexException("No expanded opcode for " + insn);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 26 import com.android.ide.eclipse.adt.internal.build.DexException;
322 } catch (DexException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PostCompilerBuilder.java 30 import com.android.ide.eclipse.adt.internal.build.DexException;
594 } catch (DexException e) {
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 344 milliseconds