HomeSort by relevance Sort by last modified time
    Searched defs:doThrow (Results 1 - 25 of 65) sorted by null

1 2 3

  /art/test/008-exceptions/src/
MultiDexBadInitWrapper1.java 19 if (doThrow) { throw new Error(); }
23 public static boolean doThrow = false;
  /art/test/008-exceptions/src-multidex/
MultiDexBadInitWrapper2.java 19 if (doThrow) { throw new Error(); }
23 public static boolean doThrow = false;
  /art/test/638-no-line-number/src/
Main.java 20 doThrow(new Error());
25 doThrow(null);
31 public static void doThrow(Error e) {
  /art/test/553-invoke-super/src/
SuperClass.java 18 boolean doThrow = false;
21 if (doThrow) {
  /art/test/637-checker-throw-inline/src/
Main.java 20 if (doThrow) throw new Error("");
24 if (doThrow) throw new Error("");
63 static boolean doThrow = false;
  /external/mockito/src/main/java/org/mockito/stubbing/
Stubber.java 10 * Allows to choose a method when stubbing in doThrow()|doAnswer()|doNothing()|doReturn() style
14 * doThrow(new RuntimeException()).when(mockedList).clear();
23 * doThrow(new RuntimeException("one")).
24 * doThrow(new RuntimeException("two"))
30 * {@link Mockito#doThrow(Throwable[])}
45 * Allows to choose a method when stubbing in doThrow()|doAnswer()|doNothing()|doReturn() style
49 * doThrow(new RuntimeException())
58 * {@link Mockito#doThrow(Throwable[])}
75 * Use it for stubbing consecutive calls in {@link Mockito#doThrow(Throwable[])} style:
77 * doThrow(new RuntimeException("one"))
    [all...]
  /art/test/458-long-to-fpu/src/
Main.java 24 static boolean doThrow = false;
28 if (doThrow) {
38 if (doThrow) {
  /art/test/526-checker-caller-callee-regs/src/
Main.java 25 static boolean doThrow = false;
30 if (doThrow) throw new Error();
  /art/test/530-checker-regression-reftyp-final/src/
Main.java 61 if (doThrow) throw new Error();
65 static boolean doThrow = false;
  /art/test/548-checker-inlining-and-dce/src/
Main.java 19 static boolean doThrow = false;
24 if (doThrow) { throw new Error(""); }
31 if (doThrow) { throw new Error(""); }
  /art/test/561-divrem/src/
Main.java 75 if (doThrow) {
82 if (doThrow) {
89 if (doThrow) {
96 if (doThrow) {
102 static boolean doThrow = false;
  /art/test/578-polymorphic-inlining/src/
Main.java 47 if (doThrow) throw new Error("");
50 public static boolean doThrow;
  /art/test/593-checker-long-2-float-regression/src/
Main.java 19 static boolean doThrow = false;
38 if (doThrow) { throw new Error(); }
  /art/test/610-arraycopy/src/
Main.java 40 if (doThrow) { throw new Error(); }
43 static boolean doThrow = false;
  /art/test/633-checker-rtp-getclass/src/
Main.java 34 public static boolean doThrow = false;
  /art/test/476-checker-ctor-memory-barrier/src/
Main.java 28 public static boolean doThrow = false;
  /art/test/482-checker-loop-back-edge-use/src/
Main.java 169 if (doThrow) throw new Error("");
198 static boolean doThrow = false;
  /art/test/521-regression-integer-field-set/src/
Main.java 34 private static boolean doThrow = false;
37 if (doThrow) {
47 if (doThrow) {
  /art/test/563-checker-fakestring/src/
Main.java 83 public static boolean doThrow = false;
86 if (doThrow) { throw new Error(); }
  /art/test/594-load-string-regression/src/
Main.java 18 static boolean doThrow = false;
31 if (doThrow) { throw new Error(); }
70 static boolean doThrow = false;
73 if (doThrow) { throw new Error(); }
  /external/mockito/src/main/java/org/mockito/internal/stubbing/
StubberImpl.java 63 public Stubber doThrow(Throwable... toBeThrown) {
75 public Stubber doThrow(Class<? extends Throwable> toBeThrown) {
80 public Stubber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) {
  /art/benchmark/string-indexof/src/
StringIndexOfBenchmark.java 117 if (doThrow) { throw new Error(); }
121 public static boolean doThrow = false;
  /art/test/526-long-regalloc/src/
Main.java 57 if (doThrow) throw new Error();
61 public static boolean doThrow = false;
  /art/test/529-long-split/src/
Main.java 170 if (doThrow) throw new Error();
174 if (doThrow) throw new Error();
177 public static boolean doThrow;
  /art/test/534-checker-bce-deoptimization/src/
Main.java 92 if (doThrow) { throw new Error(); }
121 if (doThrow) { throw new Error(); }
129 public static boolean doThrow = false;

Completed in 495 milliseconds

1 2 3