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

1 2

  /external/v8/test/mjsunit/compiler/
inline-throw.js 31 function doThrow() {
36 if (x == 42) throw doThrow();
  /art/test/553-invoke-super/src/
SuperClass.java 18 boolean doThrow = false;
21 if (doThrow) {
  /external/mockito/src/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/476-checker-ctor-memory-barrier/src/
Main.java 28 public static boolean doThrow = false;
35 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-reftype-final/src/
Main.java 61 if (doThrow) throw new Error();
65 static boolean doThrow = false;
  /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-to-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/521-regression-integer-field-set/src/
Main.java 34 private static boolean doThrow = false;
37 if (doThrow) {
47 if (doThrow) {
  /art/test/552-checker-sharpening/src/
Main.java 31 public static boolean doThrow = false;
34 if (doThrow) { throw new Error(); }
219 if (doThrow) { throw new Error(); }
249 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/org/mockito/internal/stubbing/
StubberImpl.java 42 public Stubber doThrow(Throwable toBeThrown) {
47 public Stubber doThrow(Class<? extends Throwable> toBeThrown) {
  /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/566-checker-codegen-select/src/
Main.java 24 if (doThrow) { throw new Error(); }
49 if (doThrow) { throw new Error(); }
63 if (doThrow) { throw new Error(); }
91 public boolean doThrow = false;
  /art/test/004-StackWalk/src/
Main.java 5 boolean doThrow = false;
12 if (doThrow) { throw new Error(); }
  /art/test/415-optimizing-arith-neg/src/
Main.java 172 static boolean doThrow = false;
175 if (doThrow) {
184 if (doThrow) {
193 if (doThrow) {
201 if (doThrow) {
209 if (doThrow) {
217 if (doThrow) {
  /art/test/451-spill-splot/src/
Main.java 79 static boolean doThrow = false;
82 if (doThrow) {
90 if (doThrow) {
  /art/test/550-checker-multiply-accumulate/src/
Main.java 20 static boolean doThrow = false;
83 if (doThrow) throw new Error();
125 if (doThrow) throw new Error();
177 if (doThrow) throw new Error();
235 if (doThrow) throw new Error();
288 if (doThrow) throw new Error();
329 if (doThrow) throw new Error();
376 if (doThrow) throw new Error();
423 if (doThrow) throw new Error();
  /art/test/564-checker-negbitwise/src/
Main.java 20 static boolean doThrow = false;
80 if (doThrow) throw new Error();
130 if (doThrow) throw new Error();
177 if (doThrow) throw new Error();
213 if (doThrow) throw new Error();
269 if (doThrow) throw new Error();
288 if (doThrow) throw new Error();
  /art/test/566-polymorphic-inlining/src/
Main.java 118 if (doThrow) throw new Error("");
130 public static boolean doThrow = false;
  /art/test/576-polymorphic-inlining/src/
Main.java 41 if (doThrow) throw new Error("");
47 if (doThrow) throw new Error("");
53 if (doThrow) throw new Error("");
75 public static boolean doThrow;
80 if (doThrow) throw new Error("");

Completed in 192 milliseconds

1 2