HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 51 - 75 of 4577) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-320887.js 50 catch(ex)
52 actual = ex + '';
  /frameworks/base/core/java/android/app/
IActivityPendingResult.aidl 25 boolean sendResult(int code, String data, in Bundle ex);
StatusBarManager.java 93 } catch (RemoteException ex) {
95 throw new RuntimeException(ex);
108 } catch (RemoteException ex) {
110 throw new RuntimeException(ex);
123 } catch (RemoteException ex) {
125 throw new RuntimeException(ex);
136 } catch (RemoteException ex) {
138 throw new RuntimeException(ex);
148 } catch (RemoteException ex) {
150 throw new RuntimeException(ex);
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 66 } catch (SQLiteDatabaseCorruptException ex) {
68 throw ex;
69 } catch (SQLiteException ex) {
70 Log.e(TAG, "exception: " + ex.getMessage() + "; query: " + getSql());
71 throw ex;
  /libcore/dom/src/test/java/org/w3c/domts/
JUnitTestSuiteAdapter.java 43 } catch(InvocationTargetException ex) {
44 throw ex.getTargetException();
58 catch(Throwable ex) {
59 if(!(ex instanceof DOMTestIncompatibleException)) {
60 ex.printStackTrace();
BatikTestDocumentBuilderFactory.java 64 } catch (Exception ex) {
65 throw new DOMTestIncompatibleException(ex, null);
97 } catch (InvocationTargetException ex) {
99 ex.getTargetException(),
101 } catch (Exception ex) {
102 throw new DOMTestIncompatibleException(ex, null);
136 } catch (InvocationTargetException ex) {
137 ex.printStackTrace();
138 throw new DOMTestLoadException(ex.getTargetException());
139 } catch (Exception ex) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarExceptionTest.java 28 JarException ex = new JarException(); local
31 assertNotSame(ex, ex1);
32 assertNotSame(ex.getMessage(), ex1.getMessage());
33 assertNotSame(ex, ex2);
34 assertSame(ex.getMessage(), ex2.getMessage());
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 31 } catch (ClassCastException ex) {
32 assertEquals("java.lang.Exception cannot be cast to java.lang.String", ex.getMessage());
41 } catch (ClassCastException ex) {
42 assertEquals("java.lang.Exception cannot be cast to java.lang.String", ex.getMessage());
50 } catch (ClassCastException ex) {
52 ex.getMessage());
60 } catch (ClassCastException ex) {
62 ex.getMessage());
70 } catch (ClassCastException ex) {
73 ex.getMessage())
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 58 } catch (SAXNotRecognizedException ex) {
59 throw new AssertionError(ex);
67 } catch (SAXNotRecognizedException ex) {
68 throw new AssertionError(ex);
81 } catch (Exception ex) {
82 throw new ParserConfigurationException(ex.toString());
108 } catch (SAXNotRecognizedException ex) {
109 throw new AssertionError(ex);
117 } catch (SAXNotRecognizedException ex) {
118 throw new AssertionError(ex);
    [all...]
  /dalvik/tests/042-new-instance/src/
Main.java 39 } catch (Exception ex) {
41 ex.printStackTrace();
51 } catch (Exception ex) {
53 ex.printStackTrace();
63 } catch (Exception ex) {
79 } catch (Exception ex) {
81 ex.printStackTrace();
90 } catch (Exception ex) {
92 ex.printStackTrace();
103 } catch (Exception ex) {
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/
JmeDesktopSystem.java 107 } catch (InterruptedException ex) {
135 } catch (InstantiationException ex) {
136 logger.log(Level.SEVERE, "Failed to create context", ex);
137 } catch (IllegalAccessException ex) {
138 logger.log(Level.SEVERE, "Failed to create context", ex);
139 } catch (ClassNotFoundException ex) {
141 + "Make sure jme3_lwjgl-ogl is on the classpath.", ex);
162 } catch (InstantiationException ex) {
163 logger.log(Level.SEVERE, "Failed to create context", ex);
164 } catch (IllegalAccessException ex) {
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 76 } catch (Exception ex) {
77 fail("Unexpected exception: " + ex);
85 } catch (Exception ex) {
86 fail(ex + " was thrown instead of IOException");
94 } catch (Exception ex) {
95 fail(ex + " was thrown instead of IllegalArgumentException");
109 } catch (Exception ex) {
110 fail("Unexpected exception: " + ex);
118 } catch (Exception ex) {
119 fail(ex + " was thrown instead of IOException")
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefinedAssignmentChecker.cpp 52 const Expr *ex = 0; local
61 ex = B->getLHS();
66 ex = B->getRHS();
72 ex = VD->getInit();
79 if (ex) {
80 R->addRange(ex->getSourceRange());
81 R->addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, ex, R));
  /cts/tests/tests/app/src/android/app/cts/
PendingIntent_CanceledExceptionTest.java 41 Exception ex = new Exception(); local
42 canceledException = new PendingIntent.CanceledException(ex);
46 assertSame(ex, e.getCause());
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CoderMalfunctionErrorTest.java 34 Exception ex = new Exception(); local
35 CoderMalfunctionError e = new CoderMalfunctionError(ex);
36 assertSame(ex, e.getCause());
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
Savable.java 44 void write(JmeExporter ex) throws IOException;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentLengthParser.java 63 } catch (InvalidArgumentException ex) {
64 throw createParseException(ex.getMessage());
65 } catch (NumberFormatException ex) {
66 throw createParseException(ex.getMessage());
MaxForwardsParser.java 62 } catch (InvalidArgumentException ex) {
63 throw createParseException(ex.getMessage());
64 } catch (NumberFormatException ex) {
65 throw createParseException(ex.getMessage());
  /external/proguard/src/proguard/
ArgumentWordReader.java 96 catch (Exception ex)
98 ex.printStackTrace();
105 catch (IOException ex)
107 ex.printStackTrace();
  /frameworks/base/core/java/android/os/
AsyncResult.java 36 forMessage(Message m, Object r, Throwable ex)
40 ret = new AsyncResult (m.obj, r, ex);
62 AsyncResult (Object uo, Object r, Throwable ex)
66 exception = ex;
  /frameworks/base/core/java/android/widget/
RemoteViewsService.java 143 } catch (Exception ex) {
145 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
155 } catch (Exception ex) {
157 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
168 } catch (Exception ex) {
170 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
178 } catch (Exception ex) {
180 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
188 } catch (Exception ex) {
190 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
ChipsUtil.java 17 package com.android.ex.chips;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 78 } catch (DOMException ex) {
79 success = (ex.code == DOMException.NAMESPACE_ERR);
88 } catch (DOMException ex) {
89 success = (ex.code == DOMException.NAMESPACE_ERR);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AccessControlExceptionTest.java 57 AccessControlException ex = new AccessControlException("001", perm); local
58 assertSame(ex.getPermission(), perm);
  /external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java 142 } catch (IOException ex) {
144 throw ex;
161 } catch (IOException ex) {
163 throw ex;
180 } catch (IOException ex) {
182 throw ex;
198 } catch (IOException ex) {
200 throw ex;

Completed in 733 milliseconds

1 23 4 5 6 7 8 91011>>