HomeSort by relevance Sort by last modified time
    Searched full:runtimeexception (Results 1501 - 1525 of 7326) sorted by null

<<61626364656667686970>>

  /art/test/046-reflect/src/
Main.java 133 throw new RuntimeException();
181 throw new RuntimeException();
264 throw new RuntimeException();
512 throw new RuntimeException(nsfe);
521 throw new RuntimeException(nsme);
532 throw new RuntimeException(nsme);
567 throw new RuntimeException(nsfe);
584 throw new RuntimeException(nsme);
607 throw new RuntimeException(nsme);
663 throw new RuntimeException(nsme)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowView.java 422 throw new RuntimeException(e);
424 throw new RuntimeException(e);
505 throw new RuntimeException(e);
507 throw new RuntimeException(e);
509 throw new RuntimeException(e);
511 throw new RuntimeException(e);
763 * @throws RuntimeException if the view is disabled or if the view or any of its parents are not visible.
767 throw new RuntimeException("View is not visible and cannot be clicked");
770 throw new RuntimeException("View is not enabled and cannot be clicked");
1008 throw new RuntimeException(e)
    [all...]
ShadowApplication.java 109 if (shadowApplication.resourceLoader != null) throw new RuntimeException("ResourceLoader already set!");
161 throw new RuntimeException(e);
395 * {@code Context} object throws a {@code RuntimeException}
399 * @throws RuntimeException if there are any recievers registered with the given {@code Context}
404 RuntimeException e = new IllegalStateException(type + " " + context + " leaked has leaked IntentReceiver "
419 RuntimeException e = new IllegalStateException("Unexpected BroadcastReceiver on " + context +
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBitmapTest.java 425 @Test(expected = RuntimeException.class)
432 @Test(expected = RuntimeException.class)
439 @Test(expected = RuntimeException.class)
446 @Test(expected = RuntimeException.class)
453 @Test(expected = RuntimeException.class)
460 @Test(expected = RuntimeException.class)
467 @Test(expected = RuntimeException.class)
474 @Test(expected = RuntimeException.class)
481 @Test(expected = RuntimeException.class)
488 @Test(expected = RuntimeException.class
    [all...]
  /frameworks/base/core/jni/
android_util_Binder.cpp 730 jniThrowException(env, "java/lang/RuntimeException", "Unknown error");
757 jniThrowException(env, "java/lang/RuntimeException", "Not initialized");
760 jniThrowException(env, "java/lang/RuntimeException", "Item already exists");
766 : "java/lang/RuntimeException", NULL);
769 jniThrowException(env, "java/lang/RuntimeException", "Unknown transaction code");
792 : "java/lang/RuntimeException";
799 jniThrowException(env, "java/lang/RuntimeException",
806 jniThrowException(env, "java/lang/RuntimeException",
810 jniThrowException(env, "java/lang/RuntimeException",
814 jniThrowException(env, "java/lang/RuntimeException",
    [all...]
  /test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
VtsMultiDeviceTest.java 571 * @throws RuntimeException
585 throw new RuntimeException("Failed to get device information");
602 throw new RuntimeException("BuildInfo has not been set.");
625 throw new RuntimeException("Failed to produce VTS runner test config");
    [all...]
  /external/desugar/test/java/com/google/devtools/build/android/desugar/
BytecodeTypeInferenceTest.golden.txt 111 NEW java/lang/RuntimeException
112 |__STACK: [Ljava/lang/RuntimeException;]
115 |__STACK: [Ljava/lang/RuntimeException;, Ljava/lang/RuntimeException;]
118 |__STACK: [Ljava/lang/RuntimeException;, Ljava/lang/RuntimeException;, Ljava/lang/StringBuilder;]
121 |__STACK: [Ljava/lang/RuntimeException;, Ljava/lang/RuntimeException;, Ljava/lang/StringBuilder;, Ljava/lang/StringBuilder;]
124 |__STACK: [Ljava/lang/RuntimeException;, Ljava/lang/RuntimeException;, Ljava/lang/StringBuilder;
    [all...]
  /art/test/068-classloader/src/
Main.java 100 throw new RuntimeException("target1 should not be equal to target2");
107 throw new RuntimeException("mutator1 should not be equal to mutator2");
114 throw new RuntimeException("target 1 has unexpected value " + value);
118 throw new RuntimeException("target 2 has unexpected value " + value);
125 throw new RuntimeException("target 1 has unexpected value " + value);
129 throw new RuntimeException("target 2 has unexpected value " + value);
  /cts/tests/app/src/android/app/cts/
WallpaperManagerTest.java 96 throw new RuntimeException(e);
111 throw new RuntimeException(e);
219 throw new RuntimeException(e);
315 throw new RuntimeException(e);
344 throw new RuntimeException(e);
406 throw new RuntimeException("Can't ensure a clean state.");
  /external/capstone/bindings/java/capstone/
Capstone.java 18 import java.lang.RuntimeException;
375 throw new RuntimeException("Different API version between core & binding (CS_ERR_VERSION)");
383 throw new RuntimeException("ERROR: Wrong arch or mode");
400 throw new RuntimeException("ERROR: Failed to set assembly syntax");
409 throw new RuntimeException("ERROR: Failed to set detail option");
418 throw new RuntimeException("ERROR: Failed to set mode option");
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsService.java 263 throw new RuntimeException("Failed in IPC", e);
330 throw new RuntimeException("Failed in IPC", e);
355 throw new RuntimeException("Failed in IPC", e);
389 throw new RuntimeException("Failed in IPC", e);
408 throw new RuntimeException("Failed in IPC", e);
434 throw new RuntimeException("Failed in IPC", e);
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 257 throw new RuntimeException("Could not get attrib location for aPosition");
262 throw new RuntimeException("Could not get attrib location for aTextureCoord");
268 throw new RuntimeException("Could not get attrib location for uMVPMatrix");
274 throw new RuntimeException("Could not get attrib location for uSTMatrix");
280 throw new RuntimeException("Could not get attrib location for uCRatio");
432 throw new RuntimeException(op + ": glError " + error);
  /libcore/ojluni/src/main/java/jdk/net/
Sockets.java 122 } else if (t instanceof RuntimeException) {
123 throw (RuntimeException)t;
126 throw new RuntimeException(e);
140 } else if (t instanceof RuntimeException) {
141 throw (RuntimeException)t;
144 throw new RuntimeException(e);
  /prebuilts/devtools/tools/lib/
objenesis-2.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
objenesis-2.1.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.1/
objenesis-2.1.jar 
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 132 throw new RuntimeException(nsfe);
144 throw new RuntimeException(nsme);
278 throw new RuntimeException(e);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
PolicyTransparencyTestListActivity.java 123 throw new RuntimeException("PolicyTransparencyTestListActivity started without extra "
129 throw new RuntimeException("Unknown mode " + mMode);
190 throw new RuntimeException("Unknown mode " + mMode);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
CameraStreamManager.java 197 throw new RuntimeException("Time out waiting to lock camera opening.");
203 throw new RuntimeException("Interrupted while trying to lock camera opening.", e);
222 throw new RuntimeException("Interrupted while trying to lock camera closing.", e);
  /cts/hostsidetests/api/src/com/android/cts/api/
UnofficialApisUsageTest.java 110 throw new RuntimeException("Cannot connect to device", e);
137 throw new RuntimeException("Error while examining whether code is in " + file, e);
173 throw new RuntimeException("Cannot connect to device", e);
  /cts/tests/tests/opengl/src/android/opengl/cts/
EglConfigGLSurfaceView.java 140 throw new RuntimeException("Could not create program");
146 throw new RuntimeException("Could not get attrib location for aPosition");
212 throw new RuntimeException(op + ": glError " + error);
  /cts/tests/tests/preference2/src/android/preference2/cts/
TestUtils.java 164 throw new RuntimeException("Failed to get activity task id!", e);
174 throw new RuntimeException("Failed to get activity task id!", e);
240 throw new RuntimeException("Failed to run command: " + cmd, e);
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 78 } catch (RuntimeException e) {
79 // RuntimeException is thrown when stop() is called immediately after start().
81 Log.d(TAG, "RuntimeException: stop() is called immediately after start()");
  /developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 78 } catch (RuntimeException e) {
79 // RuntimeException is thrown when stop() is called immediately after start().
81 Log.d(TAG, "RuntimeException: stop() is called immediately after start()");
  /development/samples/Vault/tests/src/com/example/android/vault/
EncryptedDocumentTest.java 117 throw new RuntimeException(e);
147 throw new RuntimeException(e);
234 throw new RuntimeException(e);

Completed in 1459 milliseconds

<<61626364656667686970>>