HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 26 - 50 of 1224) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/security/
PrivilegedActionException.java 47 * @param ex
50 public PrivilegedActionException(Exception ex) {
51 super(ex);
52 this.exception = ex;
  /libcore/luni/src/main/java/javax/sql/
ConnectionEvent.java 33 private SQLException ex; field in class:ConnectionEvent
61 ex = theException;
72 return ex;
  /bionic/libm/src/
s_frexpl.c 39 frexpl(long double x, int *ex)
47 *ex = 0;
50 *ex = u.bits.exp - 0x4200;
54 case 0x7fff: /* infinity or NaN; value of *ex is unspecified */
57 *ex = u.bits.exp - 0x3ffe;
  /dalvik/dx/tests/069-dex-source-position/
Blort.java 25 } catch (RuntimeException ex) { // line 11
  /dalvik/dx/tests/092-ssa-cfg-edge-cases/
Blort.java 17 } catch (RuntimeException ex){
  /external/nist-sip/java/gov/nist/core/
Debug.java 50 public static void printStackTrace(Exception ex) {
52 stackLogger.logError("Stack Trace",ex);
56 public static void logError(String message, Exception ex) {
58 stackLogger.logError(message,ex);
  /frameworks/base/tests/CoreTests/android/core/
MonitorTest.java 43 } catch (InterruptedException ex) {
45 ex);
46 } catch (Exception ex) {
48 "Object.wait() with good arguments", ex);
58 } catch (InterruptedException ex) {
59 throw new RuntimeException("bad Object.wait() interrupted", ex);
60 } catch (IllegalArgumentException ex) {
62 } catch (Exception ex) {
64 "Object.wait() with bad arguments", ex);
76 } catch (InterruptedException ex) {
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
EncryptionException.java 15 public EncryptionException(String msg, Throwable ex)
18 this.cause = ex;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TimeStampParser.java 93 } catch (NumberFormatException ex) {
94 throw createParseException(ex.getMessage());
95 } catch (InvalidArgumentException ex) {
96 throw createParseException(ex.getMessage());
118 } catch (NumberFormatException ex) {
119 throw createParseException(ex.getMessage());
120 } catch (InvalidArgumentException ex) {
121 throw createParseException(ex.getMessage());
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());
RetryAfterParser.java 81 } catch (NumberFormatException ex) {
82 throw createParseException(ex.getMessage());
83 } catch (InvalidArgumentException ex) {
84 throw createParseException(ex.getMessage());
107 } catch (NumberFormatException ex) {
108 throw createParseException(ex.getMessage());
109 } catch (InvalidArgumentException ex) {
110 throw createParseException(ex.getMessage());
  /external/webkit/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);
  /libcore/luni/src/test/java/libcore/java/lang/
ThrowableTest.java 33 } catch (NoStackTraceException ex) {
35 ex.printStackTrace(new PrintWriter(new StringWriter()));
  /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/org/apache/harmony/archive/tests/java/util/jar/
JarExceptionTest.java 31 JarException ex = new JarException(); local
34 assertNotSame(ex, ex1);
35 assertNotSame(ex.getMessage(), ex1.getMessage());
36 assertNotSame(ex, ex2);
37 assertSame(ex.getMessage(), ex2.getMessage());
  /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...]
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 99 } catch (Exception ex) {
100 fail("Unexpected exception: " + ex);
108 } catch (Exception ex) {
109 fail(ex + " was thrown instead of IOException");
117 } catch (Exception ex) {
118 fail(ex + " was thrown instead of IllegalArgumentException");
138 } catch (Exception ex) {
139 fail("Unexpected exception: " + ex);
147 } catch (Exception ex) {
148 fail(ex + " was thrown instead of IOException")
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 210 } catch (IOException ex) {
211 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
212 throw new RuntimeException(ex);
213 } catch (RuntimeException ex) {
214 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
215 throw ex;
236 } catch (IOException ex) {
237 Log.d(TAG, "onRestore (" + BackupAgent.this.getClass().getName() + ") threw", ex);
238 throw new RuntimeException(ex);
239 } catch (RuntimeException ex) {
    [all...]
  /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;
  /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-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 1220 milliseconds

12 3 4 5 6 7 8 91011>>