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

/cts/tools/dasm/src/dasm/
H A DDasmCatchBuilder.java53 * @param exception
54 * exception type
62 UnprocessedCatch(String exception, String from, String to, argument
66 add(exception, branch);
70 * Adds new exception type and branch label to current "from-to" block
77 * @param exception
78 * exception type
82 void add(String exception, String branch) { argument
84 if (exception.compareToIgnoreCase("all") == 0)
87 type = CstType.intern(Type.internClassName(exception));
149 add(String exception, String start, String end, String branch) argument
[all...]
/cts/tests/tests/os/src/android/os/cts/
H A DAsyncTaskTest.java71 if (mAsyncTask.exception != null) {
72 throw mAsyncTask.exception;
91 fail("Failed to throw exception!");
108 assertNotNull(mAsyncTask.exception);
109 assertTrue(mAsyncTask.exception instanceof InterruptedException);
121 assertNull(mAsyncTask.exception);
130 assertNull(mAsyncTask.exception);
148 public Exception exception; field in class:AsyncTaskTest.MyAsyncTask
161 exception = e;
/cts/tests/tests/nativeopengl/standalone/jni/
H A DGLTestHelper.cpp265 jthrowable exception = env->ExceptionOccurred(); local
267 if (exception) {
272 env->Throw(exception);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
H A DBackupTestActivity.java222 protected void onPostExecute(Exception exception) { argument
223 super.onPostExecute(exception);
224 if (exception != null) {
225 Log.e(TAG, "Couldn't generate test data...", exception);
/cts/tests/signature/src/android/signature/cts/
H A DJDiffClassDescription.java316 * Adds an exception.
318 * @param exceptionName name of exception
532 loge("Got exception when checking method compliance", e);
657 loge("Got exception when checking constructor compliance", e);
746 loge("Got exception when checking field compliance", e);
918 loge("Got exception when checking field compliance", e);
1220 private static void loge(String message, Exception exception) { argument
1221 System.err.println(String.format("%s: %s", message, exception));
/cts/tools/signature-tools/src/signature/compare/
H A DApiComparator.java734 // remove sub types of containing exception
742 ITypeReference exception = iterator.next();
743 if (isRuntimeExceptionOrErrorSubtype(exception)) {
842 private boolean isRuntimeExceptionOrErrorSubtype(ITypeReference exception) { argument
844 IClassDefinition clazz = getClassDefinition(exception);
857 private boolean isRuntimeExceptionOrError(IClassDefinition exception) { argument
858 if (exception == null) {
861 String packageName = exception.getPackageName();
862 String className = exception.getName();
/cts/tools/vm-tests-tf/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...

Completed in 292 milliseconds