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

1 2

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
AuthenticationFailedException.java 27 public AuthenticationFailedException(int exceptionType, String message) {
28 super(exceptionType, message);
MessagingException.java 78 public MessagingException(int exceptionType, String message, Throwable throwable) {
80 mExceptionType = exceptionType;
85 * Constructs a MessagingException with an exceptionType and a null message.
86 * @param exceptionType The exception type to set for this exception.
88 public MessagingException(int exceptionType) {
89 this(exceptionType, null, null);
101 * Constructs a MessagingException with an exceptionType and a message.
102 * @param exceptionType The exception type to set for this exception.
104 public MessagingException(int exceptionType, String message) {
105 this(exceptionType, message, null)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CatchMethodItem.java 37 private final TypeIdItem exceptionType;
43 public CatchMethodItem(MethodDefinition.LabelCache labelCache, int codeAddress, TypeIdItem exceptionType,
46 this.exceptionType = exceptionType;
54 if (exceptionType == null) {
80 if (exceptionType == null) {
84 ReferenceFormatter.writeTypeReference(writer, exceptionType);
MethodDefinition.java 512 handler.exceptionType, startAddress, endAddress, handler.getHandlerAddress());
  /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 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...]
  /external/dexmaker/src/dx/java/com/android/dx/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...]
  /external/webkit/Source/JavaScriptCore/runtime/
Completion.cpp 70 ComplType exceptionType = Throw;
72 exceptionType = asObject(exception)->exceptionType();
73 return Completion(exceptionType, exception);
ExceptionHelpers.cpp 51 virtual ComplType exceptionType() const { return Interrupted; }
68 virtual ComplType exceptionType() const { return Terminated; }
JSObject.h 219 virtual ComplType exceptionType() const { return Throw; }
    [all...]
  /external/doclava/src/com/google/doclava/
ThrowsTagInfo.java 56 public TypeInfo exceptionType() {
67 if (tags[i].exceptionType() != null) {
68 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type");
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java     [all...]
  /ndk/sources/cxx-stl/gabi++/src/
call_unexpected.cc 92 if (dynamic_cast<const __pointer_type_info*>(header->exceptionType)) {
99 static_cast<const __shim_type_info*>(header->exceptionType);
300 const std::type_info* excpType = new_exception_header->exceptionType;
helper_func_internal.cc 180 static_cast<const __shim_type_info*>(exception_header->exceptionType);
213 const std::type_info* excpType = header->exceptionType;
cxxabi.cc 184 header->exceptionType = tinfo;
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 254 private void recordStackMap(TypedBlock target, int exceptionType)
258 if (exceptionType == 0)
261 type = cpool.getClassInfo(exceptionType);
  /external/webkit/Source/WebCore/bindings/js/
JSEventListener.cpp 136 bool terminatorCausedException = (exec->hadException() && exec->exception().isObject() && asObject(exec->exception())->exceptionType() == Terminated);
JSDOMBinding.cpp 286 if (exception.isObject() && asObject(exception)->exceptionType() == Terminated)
  /ndk/sources/cxx-stl/gabi++/include/
cxxabi.h 284 std::type_info* exceptionType;
  /external/javassist/src/main/javassist/
CtBehavior.java     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java     [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java 584 int exceptionType = result.getExceptionType();
586 switch (exceptionType) {
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 493 for (Type exceptionType : member.thrownExceptionTypes()) {
494 exceptions.add(convertTypeReference(exceptionType));
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]

Completed in 917 milliseconds

1 2