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

12

/frameworks/opt/vcard/java/com/android/vcard/exception/
H A DVCardAgentNotSupportedException.java16 package com.android.vcard.exception;
H A DVCardException.java16 package com.android.vcard.exception;
H A DVCardInvalidCommentLineException.java17 package com.android.vcard.exception;
H A DVCardInvalidLineException.java16 package com.android.vcard.exception;
H A DVCardNestedException.java17 package com.android.vcard.exception;
H A DVCardNotSupportedException.java16 package com.android.vcard.exception;
19 * The exception which tells that the input VCard is probably valid from the view of
H A DVCardVersionException.java16 package com.android.vcard.exception;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryResult.java32 public Exception exception; field in class:DirectoryResult
/frameworks/base/core/java/android/os/
H A DAsyncResult.java27 // Expect either exception or result to be null
29 public Throwable exception; field in class:AsyncResult
66 exception = ex;
H A DRegistrant.java55 notifyException(Throwable exception) argument
57 internalNotifyRegistrant (null, exception);
66 internalNotifyRegistrant (ar.result, ar.exception);
70 internalNotifyRegistrant (Object result, Throwable exception) argument
81 msg.obj = new AsyncResult(userObj, result, exception);
H A DRegistrantList.java74 internalNotifyRegistrants (Object result, Throwable exception) argument
78 r.internalNotifyRegistrant(result, exception);
89 notifyException(Throwable exception) argument
91 internalNotifyRegistrants (null, exception);
104 internalNotifyRegistrants(ar.result, ar.exception);
/frameworks/base/core/tests/coretests/src/android/view/
H A DRemoteViewsTest.java50 public final ExpectedException exception = ExpectedException.none(); field in class:RemoteViewsTest
104 exception.expect(IllegalStateException.class);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java54 public void exception(Throwable t, String format, Object... args) { method in class:Log
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewAssertions.java105 public void check(View view, NoMatchingViewException exception) {
151 public void check(View view, NoMatchingViewException exception) { argument
188 public void check(View view, NoMatchingViewException exception) { argument
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java82 public void failed(String className, Throwable exception) { argument
84 Log.i(mTag, "----- begin exception -----");
85 Log.i(mTag, "", exception);
86 Log.i(mTag, "----- end exception -----");
H A DTestRunner.java217 public void failed(String className, Throwable exception) { argument
221 mListeners.get(i).failed(className, exception);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java40 public Exception exception; field in class:AsyncRunner.RunnerResult
82 } catch (Exception exception) {
83 result.exception = exception;
90 } catch (Exception exception) {
91 result.exception = exception;
113 setException(result.exception);
118 } catch (Exception exception) {
120 setException(exception);
235 setException(Exception exception) argument
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScope.java59 public static void defer(ScopedException exception) { argument
60 sDeferredExceptions.add(exception);
83 * consumed, it creates the exception and defers if possible then exits from the provided
88 * @param msg The exception message
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DBasicNetwork.java187 * request's retry policy, a timeout exception is thrown.
191 VolleyError exception) throws VolleyError {
196 retryPolicy.retry(exception);
247 // This can happen if there was an exception above that left the entity in
190 attemptRetryOnException(String logPrefix, Request<?> request, VolleyError exception) argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecFeatureAction.java205 final HdmiCecFeatureAction exception) {
206 mSource.removeActionExcept(clazz, exception);
204 removeActionExcept(final Class<T> clazz, final HdmiCecFeatureAction exception) argument
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestSuiteBuilder.java192 } catch (Exception exception) {
193 Log.i("TestSuiteBuilder", "Failed to create test.", exception);
195 suite.addTest(new FailedToCreateTests(exception));
228 private final Exception exception; field in class:TestSuiteBuilder.FailedToCreateTests
230 public FailedToCreateTests(Exception exception) { argument
232 this.exception = exception;
236 throw new RuntimeException("Exception during suite construction", exception);
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp314 const char* const exception = (err == NO_MEMORY) ? local
317 jniThrowException(env, exception, NULL);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp54 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message) argument
61 jniThrowException( env, exception, message);
66 jniThrowException( env, exception, msg);
107 if (!tmp) { // OutOfMemoryError exception already thrown
359 if (!array) { // OutOfMemoryError exception has already been thrown.
H A Dandroid_media_MediaRecorder.cpp126 // Returns true if it throws an exception.
127 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message) argument
134 jniThrowException(env, exception, message);
171 // get_native_camera will throw an exception in this case
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java250 Log.e(TAG, "Remote provider threw runtime exception, using error view instead.", e);
391 Exception exception = null;
444 exception = e;
454 exception = e;
462 applyContent(content, recycled, exception);
466 private void applyContent(View content, boolean recycled, Exception exception) { argument
472 Log.w(TAG, "updateAppWidget couldn't find any view, using error view", exception);
677 Exception exception = null;
705 exception = e;
708 if (exception !
[all...]

Completed in 1663 milliseconds

12