OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getExceptionType
(Results
1 - 25
of
43
) sorted by null
1
2
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseExceptionHandler.java
46
final String exceptionType =
getExceptionType
();
60
String exceptionType =
getExceptionType
();
69
return Objects.equal(
getExceptionType
(), other.
getExceptionType
()) &&
78
String exceptionType =
getExceptionType
();
80
if (o.
getExceptionType
() != null) {
84
String otherExceptionType = o.
getExceptionType
();
88
res = exceptionType.compareTo(o.
getExceptionType
());
98
String exceptionType1 = o1.
getExceptionType
();
100
if (o2.
getExceptionType
() != null)
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedCatchAllExceptionHandler.java
47
@Nullable @Override public String
getExceptionType
() { return null; }
DexBackedTypedExceptionHandler.java
47
@Nonnull @Override public String
getExceptionType
() { return dexFile.getType(typeId); }
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
ExceptionHandler.java
48
@Nullable String
getExceptionType
();
73
* String exceptionType =
getExceptionType
();
86
* the return values of
getExceptionType
() and getHandlerCodeAddress() are both equal.
96
* The comparison is based on the comparison of the return values of
getExceptionType
() and
97
* getHandlerCodeAddress() in that order. A null value for
getExceptionType
() compares after a non-null value.
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderExceptionHandler.java
47
@Nullable @Override public String
getExceptionType
() {
BuilderClassPool.java
311
@Nullable @Override public BuilderTypeReference
getExceptionType
(@Nonnull ExceptionHandler handler) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderExceptionHandler.java
58
@Nullable @Override public String
getExceptionType
() {
74
@Nullable @Override public String
getExceptionType
() {
90
@Nullable @Override public String
getExceptionType
() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableExceptionHandler.java
57
exceptionHandler.
getExceptionType
(),
61
@Nullable @Override public String
getExceptionType
() { return exceptionType; }
/dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java
86
sb.append(entry.
getExceptionType
().toHuman());
111
return last.
getExceptionType
().equals(CstType.OBJECT);
225
public CstType
getExceptionType
() {
/dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java
86
sb.append(entry.
getExceptionType
().toHuman());
111
return last.
getExceptionType
().equals(CstType.OBJECT);
225
public CstType
getExceptionType
() {
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchHandlerList.java
86
sb.append(entry.
getExceptionType
().toHuman());
111
return last.
getExceptionType
().equals(CstType.OBJECT);
225
public CstType
getExceptionType
() {
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MessagingException.java
129
public int
getExceptionType
() {
/packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java
135
final int exceptionCode = ex.
getExceptionType
();
152
switch (ex.
getExceptionType
()) {
AccountCheckSettingsFragment.java
475
final int exceptionType = result.
getExceptionType
();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ClassSection.java
81
@Nullable TypeKey
getExceptionType
(@Nonnull ExceptionHandler handler);
DexWriter.java
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java
166
String existingType = existingHandler.
getExceptionType
();
167
String newType = handler.
getExceptionType
();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java
175
typePool.internNullable(handler.
getExceptionType
());
431
@Nullable @Override public CharSequence
getExceptionType
(@Nonnull ExceptionHandler handler) {
432
return handler.
getExceptionType
();
/dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java
167
typeIds.indexOf(entry.
getExceptionType
()));
/dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java
164
typeIds.indexOf(entry.
getExceptionType
()));
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java
165
typeIds.indexOf(entry.
getExceptionType
()));
/packages/apps/Email/provider_src/com/android/email/service/
PopImapSyncAdapterService.java
152
final int type = e.
getExceptionType
();
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java
493
handler.
getExceptionType
(), startAddress, endAddress, handlerAddress);
/external/clang/lib/AST/
DeclPrinter.cpp
475
Proto += FT->
getExceptionType
(I).getAsString(SubPolicy);
[
all
...]
/packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java
206
if (me.
getExceptionType
() == MessagingException.IOERROR) {
[
all
...]
Completed in 496 milliseconds
1
2