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

<<11121314151617181920>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANumericExpression.java 79 throw new RuntimeException("Not a child.");
92 throw new RuntimeException("Not a child.");
ASequenceExpression.java 74 throw new RuntimeException("Not a child.");
99 throw new RuntimeException("Not a child.");
AStringExpression.java 79 throw new RuntimeException("Not a child.");
92 throw new RuntimeException("Not a child.");
AVariableExpression.java 79 throw new RuntimeException("Not a child.");
92 throw new RuntimeException("Not a child.");
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
SingleFileMetadataSourceImplTest.java 35 } catch (RuntimeException e) {
44 } catch (RuntimeException e) {
  /external/mockito/src/test/java/org/mockito/exceptions/base/
TraceBuilder.java 18 RuntimeException exception = new RuntimeException();
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StubbingConsecutiveAnswersTest.java 59 .thenThrow(new NullPointerException(), new RuntimeException())
73 } catch (RuntimeException expected) { }
83 when(mock.simpleMethod()).thenThrow(new RuntimeException())
90 } catch (RuntimeException expected) { }
110 when(mock.simpleMethod()).thenThrow(new RuntimeException(),
117 } catch (RuntimeException expected) { }
155 when(mock.simpleMethod()).thenThrow(RuntimeException.class,
162 } catch (RuntimeException expected) { }
StubbingUsingDoReturnTest.java 53 class FooRuntimeException extends RuntimeException {}
121 .doThrow(new RuntimeException())
129 } catch (RuntimeException expected) { }
138 .doThrow(new RuntimeException())
147 } catch (RuntimeException expected) { }
177 .doThrow(new RuntimeException())
185 } catch (RuntimeException e) {}
189 } catch (RuntimeException e) {}
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
CastUtils.java 23 * a RuntimeException if the cast would cause a loss of information.
30 throw new RuntimeException("A cast to int has gone wrong. Please contact the mp4parser discussion group (" + l + ")");
  /external/objenesis/main/src/test/java/org/objenesis/
ObjenesisExceptionTest.java 35 Exception cause = new RuntimeException("test");
48 Exception cause = new RuntimeException("test");
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPair.java 51 throw new RuntimeException(e);
53 throw new RuntimeException(e);
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DocumentLoader.java 24 throw new RuntimeException(resourceBase.join(folderBaseName) + " is not a directory");
33 throw new RuntimeException("no such directory " + dir);
StaxDocumentLoader.java 32 throw new RuntimeException("error parsing " + xmlFile, e);
38 throw new RuntimeException(e);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
PropertiesDependencyResolver.java 42 throw new RuntimeException(e);
50 throw new RuntimeException("no artifacts found for " + dependency);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Util.java 29 throw new RuntimeException("Can not find " + theName);
51 throw new RuntimeException(e);
  /external/testng/src/main/java/org/testng/internal/
InvokeMethodRunnable.java 50 RuntimeException t = null;
73 public static class TestNGRuntimeException extends RuntimeException {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramPort.java 54 throw new RuntimeException(
57 throw new RuntimeException("Non Program field '" + mField.getName()
ProgramVariable.java 43 throw new RuntimeException("Attempting to set program variable '" + mVarName
51 throw new RuntimeException("Attempting to get program variable '" + mVarName
  /frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
EglWindowSurface.java 69 throw new RuntimeException("unable to get EGL14 display");
74 throw new RuntimeException("unable to initialize EGL14");
90 throw new RuntimeException("unable to find RGB888+recordable ES2 EGL config");
102 throw new RuntimeException("null context");
130 throw new RuntimeException("surface was null");
167 throw new RuntimeException("eglMakeCurrent failed");
177 throw new RuntimeException("eglMakeCurrent failed");
226 throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error));
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMDocumentBuilderFactory.java 27 throw new RuntimeException("DocumentBuilderFactory must not be null");
42 throw new RuntimeException("DocumentBuilder must not be null");
  /libcore/ojluni/src/main/java/java/lang/
RuntimeException.java 29 * {@code RuntimeException} is the superclass of those
33 * <p>{@code RuntimeException} and its subclasses are <em>unchecked
43 public class RuntimeException extends Exception {
50 public RuntimeException() {
61 public RuntimeException(String message) {
79 public RuntimeException(String message, Throwable cause) {
95 public RuntimeException(Throwable cause) {
114 protected RuntimeException(String message, Throwable cause,
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamCloseTest.java 109 Runnable close1 = () -> { holder[0] = true; throw new RuntimeException("1"); };
110 Runnable close2 = () -> { holder[1] = true; throw new RuntimeException("2"); };
111 Runnable close3 = () -> { holder[2] = true; throw new RuntimeException("3"); };
117 catch (RuntimeException e) {
129 catch (RuntimeException e) {
141 catch (RuntimeException e) {
153 catch (RuntimeException e) {
161 private void assertCascaded(RuntimeException e, int n) {
  /platform_testing/libraries/flicker/src/com/android/server/wm/flicker/monitor/
WindowManagerTraceMonitor.java 38 throw new RuntimeException("Could not start trace", e);
47 throw new RuntimeException("Could not stop trace", e);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
KeyValueArgsParser.java 36 throw new RuntimeException("Invalid Key: " + s);
45 throw new RuntimeException("Left over key");
  /test/vts/harnesses/tradefed/src/com/android/tradefed/util/
VtsVendorConfigFileUtil.java 70 * @throws RuntimeException
72 public boolean LoadVendorConfig(String configPath) throws RuntimeException {
91 throw new RuntimeException("Failed to read vendor config json file");
93 throw new RuntimeException("Failed to parse vendor config json data");
103 * @throws RuntimeException
106 throws RuntimeException {
117 * @throws RuntimeException
119 public boolean LoadVendorConfig(IBuildInfo buildInfo) throws RuntimeException {

Completed in 1361 milliseconds

<<11121314151617181920>>