HomeSort by relevance Sort by last modified time
    Searched refs:Throwable (Results 776 - 800 of 3051) sorted by null

<<31323334353637383940>>

  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
GloballyConfiguredAnswer.java 23 public Object answer(InvocationOnMock invocation) throws Throwable {
  /external/smack/src/org/jivesoftware/smack/proxy/
ProxyException.java 30 public ProxyException(ProxyInfo.ProxyType type, String ex, Throwable cause)
  /frameworks/base/core/tests/coretests/src/android/view/
ViewAttachTest.java 43 * @throws Throwable
45 public void testAttached() throws Throwable {
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeChildFrameTest.java 53 public void testInjectedObjectPresentInChildFrame() throws Throwable {
JavaBridgeReturnValuesTest.java 127 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable {
133 private boolean executeJavaScriptAndGetBooleanResult(String script) throws Throwable {
138 public void testMethodReturnTypes() throws Throwable {
177 public void testMethodReturnValues() throws Throwable {
  /libcore/crypto/src/main/java/org/conscrypt/
Message.java 67 protected void fatalAlert(byte description, String reason, Throwable cause) {
  /libcore/luni/src/main/java/java/io/
WriteAbortedException.java 78 public Throwable getCause() {
  /libcore/luni/src/main/java/java/sql/
SQLClientInfoException.java 57 * Throwable object is set to the given cause Throwable object, and the Map<String,ClientInfoStatus>
64 * the Throwable object for the underlying reason this
68 Map<String, ClientInfoStatus> failedProperties, Throwable cause) {
92 * reason, the cause Throwable object is set to the given cause Throwable
102 * the Throwable object for the underlying reason this
106 Map<String, ClientInfoStatus> failedProperties, Throwable cause) {
137 * to the vendorCode the cause Throwable object is set to the given cause
138 * Throwable object, and the Map<String,ClientInfoStatus> object is set t
    [all...]
  /libcore/luni/src/main/java/java/util/
InvalidPropertiesFormatException.java 56 public InvalidPropertiesFormatException(Throwable c) {
  /libcore/luni/src/main/java/libcore/icu/
Transliterator.java 32 @Override protected synchronized void finalize() throws Throwable {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
LocalName.java 52 * @throws Throwable
55 public void testGetLocalName1() throws Throwable {
69 public void testGetLocalName2() throws Throwable {
78 public void testGetLocalName3() throws Throwable {
91 public void testGetLocalName4() throws Throwable {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MagneticFieldMeasurementTestActivity.java 35 protected void onRun() throws Throwable {
89 private void verifyNorm() throws Throwable {
127 private void verifyStandardDeviation() throws Throwable {
  /cts/tests/src/android/app/cts/
IntentServiceStub.java 40 private static Throwable throwable; field in class:IntentServiceStub
49 throwable = null;
52 public static void waitToFinish(long timeout) throws Throwable {
61 if (throwable != null) {
62 throw throwable;
75 } catch (Throwable t) {
76 throwable = t;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_class/
Test_const_class.java 83 } catch (Throwable t) {
98 } catch (Throwable t) {
111 } catch (Throwable t) {
  /dalvik/dexgen/src/com/android/dexgen/util/
ExceptionWithContext.java 40 public static ExceptionWithContext withContext(Throwable ex, String str) {
67 public ExceptionWithContext(Throwable cause) {
77 public ExceptionWithContext(String message, Throwable cause) {
  /external/dexmaker/src/dx/java/com/android/dx/util/
ExceptionWithContext.java 40 public static ExceptionWithContext withContext(Throwable ex, String str) {
67 public ExceptionWithContext(Throwable cause) {
77 public ExceptionWithContext(String message, Throwable cause) {
  /external/guava/guava-testlib/src/com/google/common/testing/
TearDownStack.java 61 List<Throwable> exceptions = new ArrayList<Throwable>();
65 } catch (Throwable t) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MoreExecutorsTest.java 57 final AtomicReference<Throwable> throwableFromOtherThread =
58 new AtomicReference<Throwable>(null);
75 } catch (Throwable Throwable) {
76 throwableFromOtherThread.set(Throwable);
89 Throwable throwable = throwableFromOtherThread.get(); local
90 assertNull("Throwable from other thread: "
91 + (throwable == null ? null : Throwables.getStackTraceAsString(throwable)),
199 Throwable throwable = throwableFromOtherThread.get(); local
    [all...]
  /external/junit/src/org/junit/internal/runners/
ClassRoadie.java 37 protected void addFailure(Throwable targetException) {
62 } catch (Throwable e) {
75 } catch (Throwable e) {
  /external/mockito/src/org/mockito/internal/listeners/
NotifiedMethodInvocationReport.java 17 private Throwable throwable; field in class:NotifiedMethodInvocationReport
37 * @param throwable Tha throwable raised by the method invocation
39 public NotifiedMethodInvocationReport(Invocation invocation, Throwable throwable) {
41 this.throwable = throwable;
52 public Throwable getThrowable() {
53 return throwable;
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ExceptionWithContext.java 48 public static ExceptionWithContext withContext(Throwable ex, String str) {
75 public ExceptionWithContext(Throwable cause) {
85 public ExceptionWithContext(String message, Throwable cause) {
  /frameworks/base/core/java/android/hardware/camera2/utils/
CameraRuntimeException.java 12 private Throwable mCause;
29 public CameraRuntimeException(int problem, String message, Throwable cause) {
36 public CameraRuntimeException(int problem, Throwable cause) {
Decorator.java 36 * @param t Throwable that was thrown
39 boolean onCatchException(Method m, Object[] args, Throwable t);
75 throws Throwable
83 Throwable t = e.getTargetException();
  /frameworks/base/core/java/android/util/
Log.java 90 TerribleFailure(String msg, Throwable cause) { super(msg, cause); }
128 public static int v(String tag, String msg, Throwable tr) {
149 public static int d(String tag, String msg, Throwable tr) {
170 public static int i(String tag, String msg, Throwable tr) {
191 public static int w(String tag, String msg, Throwable tr) {
221 public static int w(String tag, Throwable tr) {
242 public static int e(String tag, String msg, Throwable tr) {
274 public static int wtf(String tag, Throwable tr) {
280 * Similar to {@link #wtf(String, Throwable)}, with a message as well.
285 public static int wtf(String tag, String msg, Throwable tr)
    [all...]
  /libcore/dex/src/main/java/com/android/dex/util/
ExceptionWithContext.java 39 public static ExceptionWithContext withContext(Throwable ex, String str) {
66 public ExceptionWithContext(Throwable cause) {
76 public ExceptionWithContext(String message, Throwable cause) {

Completed in 1290 milliseconds

<<31323334353637383940>>