Home
last modified time | relevance | path

Searched refs:mException (Results 1 – 5 of 5) sorted by relevance

/external/doclava/src/com/google/doclava/
DThrowsTagInfo.java33 private ClassInfo mException; field in ThrowsTagInfo
44 mException = ((ClassInfo) base).findClass(className); in ThrowsTagInfo()
46 if (mException == null) { in ThrowsTagInfo()
47 mException = Converter.obtainClass(className); in ThrowsTagInfo()
55 mException = exception; in ThrowsTagInfo()
60 return mException; in exception()
64 if (mException != null) { in exceptionType()
65 return mException.asTypeInfo(); in exceptionType()
/external/volley/src/main/java/com/android/volley/toolbox/
DRequestFuture.java59 private VolleyError mException; field in RequestFuture
102 if (mException != null) { in doGet()
103 throw new ExecutionException(mException); in doGet()
116 if (mException != null) { in doGet()
117 throw new ExecutionException(mException); in doGet()
137 return mResultReceived || mException != null || isCancelled(); in isDone()
149 mException = error; in onErrorResponse()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
DUrlDownloaderTask.java46 private Throwable mException; field in UrlDownloaderTask
103 mException = e; in doInBackground()
133 if (mException != null) { in onPostExecute()
134 Log.e("Download failed.", mException); in onPostExecute()
DZipExtractorTask.java50 private Throwable mException; field in ZipExtractorTask
115 mException = e; in doInBackground()
141 if (mException != null) { in onPostExecute()
142 Log.e("Zip extraction failed.", mException); in onPostExecute()
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
DCoreImplTest.java589 private MojoException mException = null; field in CoreImplTest.AsyncWaiterResult
604 this.mException = exception; in onError()
618 return mException; in getException()