OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DexException
(Results
1 - 25
of
29
) sorted by null
1
2
/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");
/libcore/dex/src/main/java/com/android/dex/
DexException.java
25
public final class
DexException
extends ExceptionWithContext {
26
public
DexException
(String message) {
30
public
DexException
(Throwable cause) {
TableOfContents.java
79
throw new
DexException
("Unexpected magic: " + Arrays.toString(magic));
87
throw new
DexException
("Unexpected header: 0x" + Integer.toHexString(headerSize));
91
throw new
DexException
("Unexpected endian tag: 0x" + Integer.toHexString(endianTag));
97
throw new
DexException
("Cannot merge dex files that do not contain a map");
127
throw new
DexException
("Unexpected map value for 0x" + Integer.toHexString(type));
134
throw new
DexException
("Map is unsorted at " + previous + ", " + section);
150
throw new
DexException
("Map is unsorted at " + section);
Leb128.java
95
throw new
DexException
("invalid LEB128 sequence");
121
throw new
DexException
("invalid LEB128 sequence");
EncodedValueReader.java
277
throw new
DexException
("Unexpected type: " + Integer.toHexString(type));
Dex.java
110
throw new
DexException
("Expected " + DexFormat.DEX_IN_JAR_NAME + " in " + file);
115
throw new
DexException
("unknown output extension: " + file);
594
throw new
DexException
("Declared length " + expectedLength
599
throw new
DexException
(e);
843
throw new
DexException
("Section limit " + data.limit() + " exceeded by " + name);
851
throw new
DexException
("Section limit " + data.limit() + " exceeded by " + name);
[
all
...]
/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
19
import com.android.dex.
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
19
import com.android.dex.
DexException
;
725
throw new
DexException
("bogus element_width: "
745
throw new
DexException
("bogus element_width: "
814
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.dex.
DexException
;
38
} catch (
DexException
expected) {
/dalvik/dx/src/com/android/dx/io/
CodeReader.java
19
import com.android.dex.
DexException
;
80
throws
DexException
{
93
public void visitAll(short[] encodedInstructions) throws
DexException
{
/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.dex.
DexException
;
50
throw new
DexException
(getTooManyMembersMessage());
TypeIdsSection.java
19
import com.android.dex.
DexException
;
88
throw new
DexException
("Too many type references: " + sz +
/dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java
19
import com.android.dex.
DexException
;
41
public short[] transform(short[] encodedInstructions) throws
DexException
{
108
throw new
DexException
("Cannot merge new index " + newIndex +
IndexMap.java
23
import com.android.dex.
DexException
;
321
throw new
DexException
("Unexpected type: " + Integer.toHexString(reader.peek()));
/dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java
32
import com.android.dex.
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) {
/prebuilts/runtime/common/dex/
dex-host-prebuilt.jar
Completed in 400 milliseconds
1
2