OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ExceptionWithContext
(Results
26 - 35
of
35
) sorted by null
1
2
/dalvik/dexgen/src/com/android/dexgen/dex/file/
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);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java
46
import org.jf.dexlib.Util.
ExceptionWithContext
;
101
throw
ExceptionWithContext
.withContext(ex, String.format("Error while processing method %s",
/external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java
179
throw
ExceptionWithContext
.withContext(ex, "Error while reading static field at index " + i);
191
throw
ExceptionWithContext
.withContext(ex, "Error while reading instance field at index " + i);
204
throw
ExceptionWithContext
.withContext(ex, "Error while reading direct method at index " + i);
217
throw
ExceptionWithContext
.withContext(ex, "Error while reading virtual method at index " + i);
[
all
...]
CodeItem.java
182
throw
ExceptionWithContext
.withContext(ex, "Error while reading EncodedCatchHandler at index " + i);
194
throw
ExceptionWithContext
.withContext(ex, "Error while reading TryItem at index " + i);
487
throw
ExceptionWithContext
.withContext(ex, "Error while attempting to fix " +
[
all
...]
/dalvik/dx/src/com/android/dx/dex/file/
DexFile.java
19
import com.android.dex.util.
ExceptionWithContext
;
546
throw
ExceptionWithContext
.withContext(ex,
566
throw new
ExceptionWithContext
("excess write of " +
572
ExceptionWithContext
ec;
573
if (ex instanceof
ExceptionWithContext
) {
574
ec = (
ExceptionWithContext
) ex;
576
ec = new
ExceptionWithContext
(ex);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java
29
import com.android.dx.util.
ExceptionWithContext
;
548
throw
ExceptionWithContext
.withContext(ex,
568
throw new
ExceptionWithContext
("excess write of " +
574
ExceptionWithContext
ec;
575
if (ex instanceof
ExceptionWithContext
) {
576
ec = (
ExceptionWithContext
) ex;
578
ec = new
ExceptionWithContext
(ex);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
ClassPath.java
33
import org.jf.dexlib.Util.
ExceptionWithContext
;
76
throw new
ExceptionWithContext
("Cannot use InitialiazeClassPathFromOdex with a non-odex DexFile");
80
throw new
ExceptionWithContext
("Cannot initialize ClassPath multiple times");
99
throw new
ExceptionWithContext
(String.format("Cannot parse dependency value %s", dependency));
104
throw new
ExceptionWithContext
(String.format("Cannot parse dependency value %s", dependency));
127
throw new
ExceptionWithContext
("Cannot initialize ClassPath multiple times");
201
throw
ExceptionWithContext
.withContext(ex, "Error while reading boot class path entry \"" +
213
throw
ExceptionWithContext
.withContext(ex,
218
throw new
ExceptionWithContext
(String.format("Cannot locate boot class path file %s", bootClassPathEntry));
230
throw
ExceptionWithContext
.withContext(ex, String.format("Error while loading class %s"
[
all
...]
/prebuilts/runtime/common/dex/
dex-host-prebuilt.jar
/prebuilts/sdk/tools/lib/
dx.jar
Completed in 147 milliseconds
1
2