HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 126 - 150 of 4121) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederrEE.java 92 } catch (DOMException ex) {
93 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
102 } catch (DOMException ex) {
103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
documentinvalidcharacterexceptioncreateentref.java 76 } catch (DOMException ex) {
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreateentref1.java 73 } catch (DOMException ex) {
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreatepi.java 76 } catch (DOMException ex) {
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreatepi1.java 73 } catch (DOMException ex) {
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
hc_attrappendchild4.java 83 } catch (DOMException ex) {
84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
95 } catch (DOMException ex) {
96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
hc_attrinsertbefore5.java 84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
96 } catch (DOMException ex) {
97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns09.java 87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
97 } catch (DOMException ex) {
98 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 84 } catch (InterruptedException ex) {
85 System.err.println(ex.getMessage());
102 } catch (InterruptedException ex) {
103 System.err.println(ex.getMessage());
  /packages/apps/Gallery/src/com/android/camera/
ReverseGeocoderTask.java 60 } catch (IOException ex) {
62 Log.e(TAG, "Geocoder exception: ", ex);
63 } catch (RuntimeException ex) {
65 Log.e(TAG, "Geocoder exception: ", ex);
  /dalvik/dx/src/com/android/dx/command/
Main.java 120 } catch (UsageException ex) {
122 } catch (RuntimeException ex) {
124 ex.printStackTrace();
126 } catch (Throwable ex) {
128 ex.printStackTrace();
129 if ((ex instanceof NoClassDefFoundError)
130 || (ex instanceof NoSuchMethodError)) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 73 } catch (IOException ex) {
74 InternalErrorHandler.handleException(ex);
187 } catch (InterruptedException ex) {
188 throw new IOException(ex.getMessage());
189 } catch (NoSuchElementException ex) {
190 ex.printStackTrace();
191 throw new IOException(ex.getMessage());
PipelinedMsgParser.java 240 } catch (IOException ex) {
241 Debug.printStackTrace(ex);
259 } catch (IOException ex) {
261 Debug.printStackTrace(ex);
283 } catch (ParseException ex) {
285 Debug.logError("Detected a parse error", ex);
328 } catch (IOException ex) {
329 Debug.logError("Exception Reading Content",ex);
343 } catch (Exception ex) {
362 } catch (IOException ex) {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 118 } catch (ClassNotFoundException ex) {
121 ex);
127 } catch (NoSuchMethodException ex) {
129 "Missing static main on " + className, ex);
130 } catch (SecurityException ex) {
132 "Problem getting static main on " + className, ex);
161 } catch (RuntimeException ex) {
163 ANDROID_SOCKET_ENV + " unset or invalid", ex);
169 } catch (IOException ex) {
171 "Error binding to local socket '" + fileDesc + "'", ex);
    [all...]
ZygoteConnection.java 108 } catch (IOException ex) {
109 Log.e(TAG, "Cannot read peer credentials", ex);
110 throw ex;
183 } catch (IOException ex) {
184 Log.w(TAG, "IOException on command socket " + ex.getMessage());
233 } catch (IOException ex) {
234 logAndPrintError(newStderr, "Exception creating pipe", ex);
235 } catch (ErrnoException ex) {
236 logAndPrintError(newStderr, "Exception creating pipe", ex);
237 } catch (IllegalArgumentException ex) {
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
FieldTest.java 591 } catch (IllegalArgumentException ex) {
593 } catch (Exception ex) {
603 } catch (IllegalAccessException ex) {
605 } catch (Exception ex) {
607 + ex.getMessage());
617 } catch (NullPointerException ex) {
619 } catch (Exception ex) {
630 } catch (Exception ex) {
658 } catch (IllegalArgumentException ex) {
660 } catch (Exception ex) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 79 * @param ex {@code non-null;} the exception to annotate
81 public void annotate(ExceptionWithContext ex) {
87 ex.addContext("stack[" + idx + "]: " +
162 } catch (NullPointerException ex) {
279 } catch (NullPointerException ex) {
309 } catch (SimException ex) {
310 ex.addContext("underlay stack:");
311 this.annotate(ex);
312 ex.addContext("overlay stack:");
313 other.annotate(ex);
    [all...]
OneLocalsArray.java 59 public void annotate(ExceptionWithContext ex) {
63 ex.addContext("locals[" + Hex.u2(i) + "]: " + s);
111 } catch (NullPointerException ex) {
212 } catch (SimException ex) {
213 ex.addContext("underlay locals:");
214 annotate(ex);
215 ex.addContext("overlay locals:");
216 other.annotate(ex);
217 throw ex;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild38.js 54 } catch(ex) {
55 catchInitializationError(builder, ex);
123 catch(ex) {
124 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
135 catch(ex) {
136 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
147 catch(ex) {
148 success = (typeof(ex.code) != 'undefined' && ex.code == 7)
    [all...]
domconfigschematype1.js 48 } catch(ex) {
49 catchInitializationError(builder, ex);
100 } catch (ex) {
101 if (typeof(ex.code) != 'undefined') {
102 switch(ex.code) {
106 throw ex;
109 throw ex;
130 catch(ex) {
131 success = (typeof(ex.code) != 'undefined' && ex.code == 9)
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
X509TrustManagerTest.java 27 } catch (Exception ex) {
28 fail("Unexpected exception " + ex);
41 } catch (Exception ex) {
42 fail("Unexpected exception " + ex);
117 } catch (Exception ex) {
118 fail("Unexpected exception " + ex);
192 } catch (Exception ex) {
193 fail("Unexpected exception " + ex);
205 } catch (Exception ex) {
206 fail("Unexpected exception " + ex);
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
X509KeyManagerImpl.java 111 } catch (Exception ex) {
112 throw new IllegalArgumentException(ex.getMessage());
135 } catch (Exception ex) {
136 throw new IllegalArgumentException(ex.getMessage());
154 } catch (Exception ex) {
155 throw new IllegalArgumentException(ex.getMessage());
179 } catch (Exception ex) {
180 throw new IllegalArgumentException(ex.getMessage());
195 } catch (Exception ex) {
196 throw new IllegalArgumentException(ex.getMessage())
    [all...]