HomeSort by relevance Sort by last modified time
    Searched full:throwable (Results 226 - 250 of 3684) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/accounts/
AuthenticatorException.java 26 public AuthenticatorException(String message, Throwable cause) {
29 public AuthenticatorException(Throwable cause) {
NetworkErrorException.java 25 public NetworkErrorException(String message, Throwable cause) {
28 public NetworkErrorException(Throwable cause) {
OperationCanceledException.java 25 public OperationCanceledException(String message, Throwable cause) {
28 public OperationCanceledException(Throwable cause) {
  /frameworks/base/core/java/android/util/
Slog.java 36 public static int v(String tag, String msg, Throwable tr) {
45 public static int d(String tag, String msg, Throwable tr) {
54 public static int i(String tag, String msg, Throwable tr) {
63 public static int w(String tag, String msg, Throwable tr) {
68 public static int w(String tag, Throwable tr) {
76 public static int e(String tag, String msg, Throwable tr) {
89 public static int wtf(String tag, Throwable tr) {
93 public static int wtf(String tag, String msg, Throwable tr) {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaRecorderStopException.java 36 public MediaRecorderStopException(String msg, Throwable t) {
40 public MediaRecorderStopException(Throwable t) {
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
MalformedHprofException.java 28 MalformedHprofException(String message, Throwable cause) {
31 MalformedHprofException(Throwable cause) {
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestLoadException.java 24 private final Throwable innerException;
30 public DOMTestLoadException(Throwable innerException) {
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsException.java 23 public ItsException(Throwable cause) {
27 public ItsException(String message, Throwable cause) {
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ApiFailureException.java 23 public ApiFailureException(Throwable cause) {
27 public ApiFailureException(String message, Throwable cause) {
  /frameworks/base/docs/html/tools/help/uiautomator/
UiObjectNotFoundException.jd 68 <span class="sympad"><a href="#UiObjectNotFoundException(java.lang.String, java.lang.Throwable)">UiObjectNotFoundException</a></span>(String detailMessage, Throwable throwable)
84 <span class="sympad"><a href="#UiObjectNotFoundException(java.lang.Throwable)">UiObjectNotFoundException</a></span>(Throwable throwable)
112 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Throwable" class="jd-expando-trigger closed"
113 ><img id="inherited-methods-java.lang.Throwable-trigger"
118 java.lang.Throwable
120 <div id="inherited-methods-java.lang.Throwable">
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
Threads.java 51 @Override protected void afterExecute(Runnable runnable, Throwable throwable) { if (throwable != null) {
52 Log.info("Unexpected failure from " + runnable, throwable);
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 67 public void test_S0P0() throws Throwable {
71 public void test_S1P000005() throws Throwable {
75 public void test_S2P00001() throws Throwable {
79 public void test_S3P00001() throws Throwable {
83 public void test_S4P00001() throws Throwable {
87 public void test_S5P00001() throws Throwable {
91 public void test_S6P00002() throws Throwable {
95 private void doPlayStreams(int seed, float probability) throws Throwable {
113 throws Throwable {
128 private void doAsyncPrepareAndRelease(String video) throws Throwable {
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 60 public LogConfigurationException(Throwable cause) {
73 public LogConfigurationException(String message, Throwable cause) {
84 protected Throwable cause = null;
90 public Throwable getCause() {
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ViewportTest.java 33 protected String evaluateStringValue(String expression) throws Throwable {
38 protected float evaluateFloatValue(String expression) throws Throwable {
42 protected int evaluateIntegerValue(String expression) throws Throwable {
52 public void testDefaultViewportSize() throws Throwable {
  /external/junit/src/org/junit/internal/builders/
JUnit3Builder.java 12 public Runner runnerForClass(Class<?> testClass) throws Throwable {
SuiteMethodBuilder.java 12 public Runner runnerForClass(Class<?> each) throws Throwable {
  /external/junit/src/org/junit/internal/runners/statements/
InvokeMethod.java 19 public void evaluate() throws Throwable {
  /external/junit/src/org/junit/rules/
TestWatchman.java 19 * public void failed(Throwable e, FrameworkMethod method) {
50 public void evaluate() throws Throwable {
57 } catch (Throwable t) {
81 public void failed(Throwable e, FrameworkMethod method) {
  /external/mockito/src/org/mockito/
BDDMockito.java 91 * See original {@link OngoingStubbing#thenThrow(Throwable...)}
94 BDDMyOngoingStubbing<T> willThrow(Throwable... throwables);
100 BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable>... throwableClasses);
152 * @see BDDMockito.BDDMyOngoingStubbing#willThrow(java.lang.Throwable[])
154 public BDDMyOngoingStubbing<T> willThrow(Throwable... throwables) {
160 public BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable>... throwableClasses) {
205 * See original {@link Stubber#doThrow(Throwable)}
208 BDDStubber willThrow(Throwable toBeThrown);
214 BDDStubber willThrow(Class<? extends Throwable> toBeThrown);
266 * @see BDDMockito.BDDStubber#willThrow(java.lang.Throwable)
    [all...]
  /external/mockito/src/org/mockito/internal/stubbing/answers/
DoesNothing.java 16 public Object answer(InvocationOnMock invocation) throws Throwable {
  /libcore/luni/src/main/java/java/lang/
ExceptionInInitializerError.java 27 private Throwable exception;
57 public ExceptionInInitializerError(Throwable exception) {
67 public Throwable getException() {
77 public Throwable getCause() {
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutionException.java 24 * initialized by a call to {@link #initCause(Throwable) initCause}.
31 * initialized by a call to {@link #initCause(Throwable) initCause}.
47 public ExecutionException(String message, Throwable cause) {
60 public ExecutionException(Throwable cause) {
RejectedExecutionException.java 22 * initialized by a call to {@link #initCause(Throwable) initCause}.
30 * #initCause(Throwable) initCause}.
46 public RejectedExecutionException(String message, Throwable cause) {
59 public RejectedExecutionException(Throwable cause) {
  /ndk/tests/device/issue22165-typeinfo/jni/
main.cpp 5 #include "throwable.h"
  /art/runtime/native/
java_lang_Throwable.cc 36 NATIVE_METHOD(Throwable, nativeFillInStackTrace, "()Ljava/lang/Object;"),
37 NATIVE_METHOD(Throwable, nativeGetStackTrace, "(Ljava/lang/Object;)[Ljava/lang/StackTraceElement;"),
41 REGISTER_NATIVE_METHODS("java/lang/Throwable");

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 91011>>