Searched defs:exception (Results 1 - 4 of 4) sorted by relevance

/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
H A DDialogHelper.java26 public void showErrorMessageDialog(int titleId, Exception exception); argument
28 public void showErrorMessageDialog(String title, Exception exception); argument
H A DDialogHelperImpl.java46 * mDialogHelper.showErrorMessageDialog("An exception occurred!", e);
72 private static final String KEY_EXCEPTION = "exception";
82 public void showErrorMessageDialog(int titleId, Exception exception) { argument
83 showErrorMessageDialog(mActivity.getString(titleId), exception);
87 public void showErrorMessageDialog(String title, Exception exception) { argument
90 bundle.putSerializable(KEY_EXCEPTION, exception);
99 Exception exception = (Exception) args.getSerializable(KEY_EXCEPTION);
103 .setMessage(convertExceptionToErrorMessage(exception))
110 private String convertExceptionToErrorMessage(Exception exception) { argument
111 StringBuilder sb = new StringBuilder().append(exception
[all...]
/development/ndk/sources/android/libportable/arch-mips/
H A Dfenv.c25 int exception = flags & FE_ALL_EXCEPT_PORTABLE; local
27 // exception flags
28 if (exception & FE_INVALID_PORTABLE)
30 if (exception & FE_DIVBYZERO_PORTABLE)
32 if (exception & FE_OVERFLOW_PORTABLE)
34 if (exception & FE_UNDERFLOW_PORTABLE)
36 if (exception & FE_INEXACT_PORTABLE)
69 int exception = mipsflags & FE_ALL_EXCEPT; local
71 // exception flags
72 if (exception
[all...]
/development/ndk/sources/android/libportable/arch-x86/
H A Dfenv.c28 int exception = flags & FE_ALL_EXCEPT_PORTABLE; local
30 // exception flags
31 if (exception & FE_INVALID_PORTABLE)
33 if (exception & FE_DIVBYZERO_PORTABLE)
35 if (exception & FE_OVERFLOW_PORTABLE)
37 if (exception & FE_UNDERFLOW_PORTABLE)
39 if (exception & FE_INEXACT_PORTABLE)
72 int exception = x86flags & FE_ALL_EXCEPT; local
74 // exception flags
75 if (exception
[all...]

Completed in 120 milliseconds