HomeSort by relevance Sort by last modified time
    Searched refs:exceptionType (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderExceptionHandler.java 39 @Nullable final BuilderTypeReference exceptionType;
42 BuilderExceptionHandler(@Nullable BuilderTypeReference exceptionType, int handlerCodeAddress) {
43 this.exceptionType = exceptionType;
48 return exceptionType==null?null:exceptionType.getType();
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MessagingException.java 73 protected int exceptionType;
81 public MessagingException(int exceptionType, String message, Throwable throwable) {
83 this.exceptionType = exceptionType;
88 * Constructs a MessagingException with an exceptionType and a null message.
90 * @param exceptionType The exception type to set for this exception.
92 public MessagingException(int exceptionType) {
93 this(exceptionType, null, null);
106 * Constructs a MessagingException with an exceptionType and a message.
108 * @param exceptionType The exception type to set for this exception
    [all...]
AuthenticationFailedException.java 26 public AuthenticationFailedException(int exceptionType, String message) {
27 super(exceptionType, message);
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
ExceptionRecorder.java 24 private Class<?> exceptionType;
29 assertNull("multiple exeptions", exceptionType);
30 exceptionType = ex.getClass();
36 exceptionType = null;
42 assertNull(exceptionType);
45 public void assertException(final Class<? extends Throwable> exceptionType,
47 assertEquals(exceptionType, this.exceptionType);
51 public void assertException(final Class<? extends Throwable> exceptionType,
53 assertEquals(exceptionType, this.exceptionType)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
AuthenticationFailedException.java 27 public AuthenticationFailedException(int exceptionType, String message) {
28 super(exceptionType, message);
MessagingException.java 82 public MessagingException(int exceptionType, String message, Throwable throwable) {
84 mExceptionType = exceptionType;
89 * Constructs a MessagingException with an exceptionType and a null message.
90 * @param exceptionType The exception type to set for this exception.
92 public MessagingException(int exceptionType) {
93 this(exceptionType, null, null);
105 * Constructs a MessagingException with an exceptionType and a message.
106 * @param exceptionType The exception type to set for this exception.
108 public MessagingException(int exceptionType, String message) {
109 this(exceptionType, message, null)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CatchMethodItem.java 39 private final String exceptionType;
46 int codeAddress, @Nullable String exceptionType, int startAddress, int endAddress,
49 this.exceptionType = exceptionType;
57 if (exceptionType == null) {
83 if (exceptionType == null) {
87 writer.write(exceptionType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderExceptionHandler.java 52 static BuilderExceptionHandler newExceptionHandler(@Nullable final TypeReference exceptionType,
54 if (exceptionType == null) {
59 return exceptionType.getType();
67 return exceptionType;
84 static BuilderExceptionHandler newExceptionHandler(@Nullable final String exceptionType,
86 if (exceptionType == null) {
91 return exceptionType;
BuilderTryBlock.java 50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType,
54 this.exceptionHandler = BuilderExceptionHandler.newExceptionHandler(exceptionType, handler);
57 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType,
61 this.exceptionHandler = BuilderExceptionHandler.newExceptionHandler(exceptionType, handler);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseExceptionHandler.java 46 final String exceptionType = getExceptionType();
47 if (exceptionType == null) {
53 return exceptionType;
60 String exceptionType = getExceptionType();
61 int hashCode = exceptionType==null?0:exceptionType.hashCode();
78 String exceptionType = getExceptionType();
79 if (exceptionType == null) {
88 res = exceptionType.compareTo(o.getExceptionType());
  /external/mockito/src/test/java/org/mockitoutil/
ThrowableAssert.java 26 public ThrowableAssert throwsException(Class<? extends Throwable> exceptionType) {
27 if(!exceptionType.isInstance(reportedException)) {
29 + exceptionType.getSimpleName() + " but it was: "
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 118 * @param exceptionType {@code non-null;} type of exception handled
121 public void set(int n, CstType exceptionType, int handler) {
122 set0(n, new Entry(exceptionType, handler));
169 private final CstType exceptionType;
177 * @param exceptionType {@code non-null;} type of exception handled
180 public Entry(CstType exceptionType, int handler) {
185 if (exceptionType == null) {
186 throw new NullPointerException("exceptionType == null");
190 this.exceptionType = exceptionType;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 119 * @param exceptionType {@code non-null;} type of exception handled
122 public void set(int n, CstType exceptionType, int handler) {
123 set0(n, new Entry(exceptionType, handler));
171 private final CstType exceptionType;
179 * @param exceptionType {@code non-null;} type of exception handled
182 public Entry(CstType exceptionType, int handler) {
187 if (exceptionType == null) {
188 throw new NullPointerException("exceptionType == null");
192 this.exceptionType = exceptionType;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableExceptionHandler.java 43 @Nullable protected final String exceptionType;
46 public ImmutableExceptionHandler(@Nullable String exceptionType,
48 this.exceptionType = exceptionType;
61 @Nullable @Override public String getExceptionType() { return exceptionType; }
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
SmalideaExceptionHandler.java 51 SmaliClassTypeElement exceptionType = catchStatement.getExceptionType();
52 if (exceptionType == null) {
55 return exceptionType.getText();
  /external/doclava/src/com/google/doclava/
ThrowsTagInfo.java 63 public TypeInfo exceptionType() {
74 if (tags[i].exceptionType() != null) {
75 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type");
  /external/libcxxabi/src/
cxa_exception.hpp 37 std::type_info *exceptionType;
74 std::type_info *exceptionType;
cxa_default_handlers.cpp 49 static_cast<const __shim_type_info*>(exception_header->exceptionType);
cxa_exception.cpp 249 exception_header->exceptionType = tinfo;
542 // and that's ok. exceptionType is there too.
554 return exception_header->exceptionType;
709 dep_exception_header->exceptionType = exception_header->exceptionType;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_exception.hpp 37 std::type_info *exceptionType;
89 std::type_info *exceptionType;
cxa_default_handlers.cpp 48 static_cast<const __shim_type_info*>(exception_header->exceptionType);
cxa_exception.cpp 213 exception_header->exceptionType = tinfo;
500 // and that's ok. exceptionType is there too.
512 return exception_header->exceptionType;
667 dep_exception_header->exceptionType = exception_header->exceptionType;
  /tools/tradefederation/core/src/com/android/tradefed/device/
BackgroundDeviceAction.java 109 * @param exceptionType
111 protected void waitForDeviceRecovery(String exceptionType) {
112 CLog.d("%s while running %s on %s. May see duplicated content in log.", exceptionType,
  /external/guava/guava/src/com/google/common/reflect/
Invokable.java 134 TypeToken<? extends Throwable> exceptionType = (TypeToken<? extends Throwable>)
136 builder.add(exceptionType);
  /external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
InvocationTest.java 172 private void assertException(Class<? extends Throwable> exceptionType, int index) {
175 assertEquals(exceptionType, logRecord.getThrown().getClass());

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>