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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/libcore/util/
SneakyThrow.java 21 * Exploits a weakness in the runtime to throw an arbitrary throwable without
29 * Throwable thrown = null;
47 * Throwable thrown = null;
58 public static void sneakyThrow(Throwable t) {
67 private static <T extends Throwable> void sneakyThrow2(Throwable t) throws T {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Log.java 23 public static int v(String tag, String msg, Throwable tr) {
29 public static int d(String tag, String msg, Throwable tr) {
35 public static int i(String tag, String msg, Throwable tr) {
41 public static int w(String tag, String msg, Throwable tr) {
44 public static int w(String tag, Throwable tr) {
50 public static int e(String tag, String msg, Throwable tr) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Log.java 23 public static int v(String tag, String msg, Throwable tr) {
29 public static int d(String tag, String msg, Throwable tr) {
35 public static int i(String tag, String msg, Throwable tr) {
41 public static int w(String tag, String msg, Throwable tr) {
44 public static int w(String tag, Throwable tr) {
50 public static int e(String tag, String msg, Throwable tr) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Log.java 24 public static int v(String tag, String msg, Throwable tr) {
30 public static int d(String tag, String msg, Throwable tr) {
36 public static int i(String tag, String msg, Throwable tr) {
42 public static int w(String tag, String msg, Throwable tr) {
45 public static int w(String tag, Throwable tr) {
51 public static int e(String tag, String msg, Throwable tr) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Log.java 23 public static int v(String tag, String msg, Throwable tr) {
29 public static int d(String tag, String msg, Throwable tr) {
35 public static int i(String tag, String msg, Throwable tr) {
41 public static int w(String tag, String msg, Throwable tr) {
44 public static int w(String tag, Throwable tr) {
50 public static int e(String tag, String msg, Throwable tr) {
  /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;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 7 * the <code>Throwable</code> object which was thrown and caused the
20 Throwable getCause();
  /external/easymock/src/org/easymock/internal/
Result.java 36 public static Result createThrowResult(final Throwable throwable) {
41 public Object answer() throws Throwable {
42 throw throwable;
47 return "Answer throwing " + throwable;
58 public Object answer() throws Throwable {
75 public Object answer() throws Throwable {
102 public Object answer() throws Throwable {
  /external/javassist/src/main/javassist/
CannotCompileException.java 24 private Throwable myCause;
27 * Gets the cause of this throwable.
30 public Throwable getCause() {
35 * Initializes the cause of this throwable.
38 public synchronized Throwable initCause(Throwable cause) {
72 public CannotCompileException(Throwable e) {
85 public CannotCompileException(String msg, Throwable e) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/exceptions/
BlenderFileException.java 59 * @param throwable
62 public BlenderFileException(Throwable throwable) {
63 super(throwable);
70 * @param throwable
73 public BlenderFileException(String message, Throwable throwable) {
74 super(message, throwable);
  /external/junit/src/org/junit/rules/
ErrorCollector.java 27 * collector.addError(new Throwable(&quot;first thing went wrong&quot;));
28 * collector.addError(new Throwable(&quot;second thing went wrong&quot;));
36 private List<Throwable> errors= new ArrayList<Throwable>();
39 protected void verify() throws Throwable {
44 * Adds a Throwable to the table. Execution continues, but the test will fail at the end.
46 public void addError(Throwable error) {
80 } catch (Throwable e) {
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeBasicsTest.java 94 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable {
99 protected void injectObjectAndReload(final Object object, final String name) throws Throwable {
111 private void assertRaisesException(String script) throws Throwable {
121 public void testTypeOfInjectedObject() throws Throwable {
125 public void testAdditionNotReflectedUntilReload() throws Throwable {
144 public void testRemovalNotReflectedUntilReload() throws Throwable {
164 public void testRemoveObjectNotAdded() throws Throwable {
176 public void testTypeOfMethod() throws Throwable {
181 public void testTypeOfInvalidMethod() throws Throwable {
185 public void testCallingInvalidMethodRaisesException() throws Throwable {
    [all...]
  /external/easymock/src/org/easymock/
MockControl.java 153 * will react by throwing the provided Throwable.
155 * @param throwable
156 * the Throwable to throw.
162 * provided Throwable.
164 * if throwable is null.
166 public void setThrowable(Throwable throwable) {
168 "method call on the mock needed before setting Throwable")
169 .andThrow(throwable).once();
208 * number of times, and will react by throwing the provided Throwable.
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java 87 void reportWtf(String msg, Throwable e) {
227 new Throwable());
266 } catch (Throwable e) {
370 } catch (Throwable e) {
378 } catch (Throwable e) {
386 } catch (Throwable e) {
392 } catch (Throwable e) {
415 } catch (Throwable e) {
425 } catch (Throwable e) {
433 } catch (Throwable e)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 39 Throwable throwable = new Exception(); local
44 ne = new InflateException(detailMessage, throwable);
72 ne = new InflateException(throwable);
  /dalvik/dx/tests/081-dex-throws-list/
expected.txt 4 system-annotation dalvik.annotation.Throws {value: {java.lang.Throwable, java.lang.IllegalArgumentException}}
  /dalvik/tests/050-sync-test/src/
ThreadDeathHandler.java 15 public void uncaughtException(Thread t, Throwable e) {
  /dalvik/tests/054-uncaught/src/
ThreadDeathHandler.java 15 public void uncaughtException(Thread t, Throwable e) {
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAttributeTableGenerationException.java 28 public Throwable getCause()
CMSException.java 28 public Throwable getCause()
CMSRuntimeException.java 28 public Throwable getCause()
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
HistoryUtils.java 32 * @throws Throwable
35 final ContentViewCore contentViewCore) throws Throwable {
53 * @throws Throwable
56 final ContentViewCore contentViewCore, final int offset) throws Throwable {
72 * @throws Throwable
75 final ContentViewCore contentViewCore) throws Throwable {
90 * @throws Throwable
93 final ContentViewCore contentViewCore) throws Throwable {
108 * @throws Throwable
111 final ContentViewCore contentViewCore) throws Throwable {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetLoadException.java 14 public AssetLoadException(String message, Throwable cause){
  /external/junit/src/junit/framework/
TestListener.java 10 public void addError(Test test, Throwable t);
  /external/junit/src/org/junit/internal/builders/
JUnit4Builder.java 12 public Runner runnerForClass(Class<?> testClass) throws Throwable {

Completed in 357 milliseconds

1 2 3 45 6 7 8 91011>>