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

1 2

  /packages/apps/UnifiedEmail/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/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 93 if (dynamic_cast<const __pointer_type_info*>(header->exceptionType)) {
100 static_cast<const __shim_type_info*>(header->exceptionType);
301 const std::type_info* excpType = new_exception_header->exceptionType;
cxxabi_defines.h 281 std::type_info* exceptionType;
helper_func_internal.cc 176 static_cast<const __shim_type_info*>(exception_header->exceptionType);
209 const std::type_info* excpType = header->exceptionType;
cxxabi.cc 178 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);
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cxxabi.h 285 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 561 final int exceptionType = result.getExceptionType();
563 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...]
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 573 milliseconds

1 2