Home
last modified time | relevance | path

Searched refs:toThrow (Results 1 – 5 of 5) sorted by relevance

/external/libmojo/mojo/public/js/
Dunion_unittests.js27 expect(function() {var v = u.f_uint32;}).toThrow();
34 }).toThrow();
37 var u = new unions.PodUnion({ foo: 64 }); }).toThrow();
40 var u = new unions.PodUnion([1,2,3,4]); }).toThrow();
97 structEncodeDecode(s); }).toThrow();
Dcodec_unittests.js287 }).toThrow();
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DHttpURLConnectionImpl.java478 IOException toThrow = e.getCause(); in execute()
479 httpEngineFailure = toThrow; in execute()
480 throw toThrow; in execute()
491 IOException toThrow = e.getLastConnectException(); in execute()
492 httpEngineFailure = toThrow; in execute()
493 throw toThrow; in execute()
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
DCoreImplTest.java57 MojoException toThrow = null; in tearDown() local
62 if (toThrow == null) { in tearDown()
63 toThrow = e; in tearDown()
67 if (toThrow != null) { in tearDown()
68 throw toThrow; in tearDown()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java389 public void throwValue(Local<? extends Throwable> toThrow) { in throwValue() argument
391 RegisterSpecList.make(toThrow.spec()), catches)); in throwValue()