Home
last modified time | relevance | path

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

/external/smack/src/com/kenai/jbosh/
DApacheHTTPResponse.java91 private BOSHException toThrow; field in ApacheHTTPResponse
156 toThrow = new BOSHException("Could not generate request", e); in ApacheHTTPResponse()
169 toThrow = new BOSHException("HTTP request aborted"); in abort()
181 if (toThrow != null) { in getBody()
182 throw(toThrow); in getBody()
203 if (toThrow != null) { in getHTTPStatus()
204 throw(toThrow); in getHTTPStatus()
246 toThrow = new BOSHException("Could not obtain response", iox); in awaitResponse()
247 throw(toThrow); in awaitResponse()
/external/smack/asmack-master/patch/
D33-jbosh-android.patch97 + private BOSHException toThrow;
162 + toThrow = new BOSHException("Could not generate request", e);
175 + toThrow = new BOSHException("HTTP request aborted");
187 + if (toThrow != null) {
188 + throw(toThrow);
209 + if (toThrow != null) {
210 + throw(toThrow);
252 + toThrow = new BOSHException("Could not obtain response", iox);
253 + throw(toThrow);
/external/mockito/src/org/mockito/stubbing/
DVoidMethodStubbable.java43 VoidMethodStubbable<T> toThrow(Throwable throwable); in toThrow() method
DDeprecatedOngoingStubbing.java63 DeprecatedOngoingStubbing<T> toThrow(Throwable throwable); in toThrow() method
/external/mockito/src/org/mockito/internal/stubbing/
DVoidMethodStubbableImpl.java21 public VoidMethodStubbable<T> toThrow(Throwable throwable) { in toThrow() method in VoidMethodStubbableImpl
DBaseStubbing.java76 public DeprecatedOngoingStubbing<T> toThrow(Throwable throwable) { in toThrow() method in BaseStubbing
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/system/impl/
DCoreImplTest.java51 MojoException toThrow = null; in tearDown() local
56 if (toThrow == null) { in tearDown()
57 toThrow = e; in tearDown()
61 if (toThrow != null) { in tearDown()
62 throw toThrow; in tearDown()
/external/chromium_org/gin/test/
Dexpect.js244 predicates.toThrow = function(actual) { function
/external/dexmaker/src/main/java/com/google/dexmaker/
DCode.java387 public void throwValue(Local<? extends Throwable> toThrow) { in throwValue() argument
389 RegisterSpecList.make(toThrow.spec()), catches)); in throwValue()