HomeSort by relevance Sort by last modified time
    Searched refs:throwable (Results 101 - 125 of 1151) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/internal/
TestResult.java 27 private Throwable m_throwable = null;
44 Throwable throwable,
49 init(testClass, instance, method, throwable, start, end, context);
57 * @param throwable
64 Throwable throwable,
70 m_throwable = throwable;
194 * @return Returns the throwable.
197 public Throwable getThrowable() {
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseRecyclerViewInstrumentationTest.java 69 private Throwable mMainThreadException;
91 void checkForMainThreadException() throws Throwable {
101 public Throwable getMainThreadException() {
123 } catch (Throwable throwable) {
124 Log.e(TAG, "", throwable);
138 void setAdapter(final RecyclerView.Adapter adapter) throws Throwable {
148 throws Throwable {
170 final boolean removeAndRecycleExistingViews) throws Throwable {
176 } catch (Throwable t)
    [all...]
  /external/emma/core/java12/com/vladium/logging/
Logger.java 49 * <LI> caller-supplied Throwable is dumped starting with a new line, if not null.
269 * Logs 'msg' from an unnamed calling method followed by the 'throwable' stack
275 * @param throwable to dump after message [ignored if null]
277 public final void log (final int level, final String msg, final Throwable throwable)
279 _log (level, null, msg, throwable);
283 * Logs 'msg' from a given calling method followed by the 'throwable' stack
290 * @param throwable to dump after message [ignored if null]
292 public final void log (final int level, final String method, final String msg, final Throwable throwable)
    [all...]
  /external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
AndroidLoggerAdapter.java 169 * Log an exception (throwable) at level VERBOSE with an accompanying message.
174 * the exception (throwable) to log
176 public void trace(String msg, Throwable t) {
255 * Log an exception (throwable) at level DEBUG with an accompanying message.
260 * the exception (throwable) to log
262 public void debug(String msg, Throwable t) {
341 * Log an exception (throwable) at the INFO level with an accompanying
347 * the exception (throwable) to log
349 public void info(String msg, Throwable t) {
430 * Log an exception (throwable) at the WARN level with an accompanyin
    [all...]
  /external/guice/extensions/persist/lib/
easymock.jar 
  /external/guice/lib/build/
easymock.jar 
  /external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
ErrorReporter.java 67 Throwable throwable = event.getThrowable(); local
68 if (throwable != null) {
69 final PluginId pluginId = IdeErrorsDialog.findPluginId(throwable);
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/2.4/
easymock-2.4.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestResult.java 50 public void addError(Test test, Throwable throwable) {
51 mWrappedTestResult.addError(test, throwable);
110 } catch (Throwable e) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestResult.java 52 public void addError(Test test, Throwable throwable) {
53 mWrappedTestResult.addError(test, throwable);
112 } catch (Throwable e) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Debuggee.java 53 } catch (Throwable throwable) {
62 } catch (Throwable throwable) {
86 } catch ( Throwable thrown) {
Status002Debuggee.java 44 } catch (Throwable throwable) {
71 } catch (Throwable thrown) {
102 } catch (Throwable thrown) {
Status005Debuggee.java 46 } catch (Throwable throwable) {
Status006Debuggee.java 43 } catch (Throwable throwable) {
  /external/autotest/frontend/client/src/autotest/common/
PaddedJsonRpcProxy.java 97 } catch (Throwable throwable) {
98 handler.onUncaughtException(throwable);
  /external/autotest/frontend/client/src/autotest/tko/
Plot.java 83 } catch (Throwable throwable) {
84 handler.onUncaughtException(throwable);
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
Producers.java 67 @Override public ListenableFuture<Produced<Object>> create(final Throwable t) {
115 public static <T> Producer<T> immediateFailedProducer(final Throwable throwable) {
119 return Futures.immediateFailedFuture(throwable);
  /external/guice/core/src/com/google/inject/internal/
InterceptorStackCallback.java 54 MethodProxy methodProxy) throws Throwable {
73 public Object proceed() throws Throwable {
79 } catch (Throwable t) {
104 * throwable's stack trace and any causes it may have.
106 private void pruneStacktrace(Throwable throwable) {
107 for(Throwable t = throwable; t != null; t = t.getCause()) {
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
FilterChainInvocation.java 92 } catch (Throwable t) {
124 * throwable's stack trace and any causes it may have.
126 private void pruneStacktrace(Throwable throwable) {
127 for (Throwable t = throwable; t != null; t = t.getCause()) {
  /frameworks/base/core/java/android/os/
FileObserver.java 124 } catch (Throwable throwable) {
125 Log.wtf(LOG_TAG, "Unhandled exception in FileObserver " + observer, throwable);
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
AnimationThread.java 166 } catch (Throwable throwable) {
169 mListener.done(Status.ERROR_UNKNOWN.createResult("Error playing animation", throwable));
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/
BaseDataBinderTest.java 63 public void runTestOnUiThread(Runnable r) throws Throwable {
82 Throwable[] initError = new Throwable[1];
102 } catch (Throwable throwable) {
103 initError[0] = throwable;
  /packages/apps/TV/tests/unit/src/com/android/tv/
BaseMainActivityTestCase.java 82 } catch (Throwable throwable) {
83 throw new RuntimeException(throwable);
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 139 public void runTestOnUiThread(final Runnable r) throws Throwable {
140 final Throwable[] exceptions = new Throwable[1];
145 } catch (Throwable throwable) {
146 exceptions[0] = throwable;
160 protected void runTest() throws Throwable {
191 final Throwable[] exceptions = new Throwable[1];
196 } catch (Throwable throwable)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceStateMachine.java 200 public void onDeviceOpenException(Throwable throwable) {
207 closeRequestWithException(throwable);
249 public void onDeviceClosingException(Throwable throwable) {
256 closeRequestWithException(throwable);
339 private void closeRequestWithException(Throwable exception) {

Completed in 1154 milliseconds

1 2 3 45 6 7 8 91011>>