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

<<11121314151617181920>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeSetPrefix.java 153 } catch (DOMException ex) {
154 success = (ex.code == DOMException.NAMESPACE_ERR);
178 // } catch (DOMException ex) {
179 // success = (ex.code == DOMException.NAMESPACE_ERR);
211 } catch (DOMException ex) {
212 success = (ex.code == DOMException.NAMESPACE_ERR);
235 } catch (DOMException ex) {
236 success = (ex.code == DOMException.NAMESPACE_ERR);
258 } catch (DOMException ex) {
259 success = (ex.code == DOMException.NAMESPACE_ERR)
    [all...]
Prefix.java 173 } catch (DOMException ex) {
174 success = (ex.code == DOMException.NAMESPACE_ERR);
197 } catch (DOMException ex) {
198 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
221 } catch (DOMException ex) {
222 success = (ex.code == DOMException.NAMESPACE_ERR);
255 // } catch (DOMException ex) {
256 // success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
281 } catch (DOMException ex) {
282 success = (ex.code == DOMException.NAMESPACE_ERR)
    [all...]
DOMTestCase.java 32 } catch (Exception ex) {
33 parseException = ex;
63 } catch (MalformedURLException ex) {
64 // fail("Unexpected exception " + ex.getMessage());
89 } catch (MalformedURLException ex) {
90 fail("Unexpected exception " + ex.getMessage());
209 public void error(SAXParseException ex) {
212 parseException = ex;
216 public void warning(SAXParseException ex) {
220 public void fatalError(SAXParseException ex) {
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_PortManager.java 45 } catch (Exception ex) {
74 } catch (Exception ex) {
75 throw new Error("Unable to get " + num + " ports for UDP: " + ex);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 79 } catch (InterruptedException ex) {
85 } catch (RuntimeException ex) {
86 Log.e(TAG, "Task " + task.getName() + " failed", ex);
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 125 public void annotate(ExceptionWithContext ex) {
126 ex.addContext("(locals array set; primary)");
127 primary.annotate(ex);
134 ex.addContext("(locals array set: primary for caller "
137 la.getPrimary().annotate(ex);
285 } catch (SimException ex) {
286 ex.addContext(
326 } catch (SimException ex) {
327 ex.addContext("Merging one locals against caller block "
355 } catch (SimException ex) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 239 } catch (Exception ex) {
243 sipStack.getStackLogger().logException(ex);
340 } catch (Exception ex) {
344 sipStack.getStackLogger().logException(ex);
375 } catch (Exception ex) {
379 sipStack.getStackLogger().logException(ex);
388 } catch (Exception ex) {
392 sipStack.getStackLogger().logException(ex);
399 } catch (Exception ex) {
400 sipStack.getStackLogger().logException(ex);
    [all...]
SipStackImpl.java 546 } catch (java.net.UnknownHostException ex) {
576 } catch (Exception ex) {
581 ex);
605 } catch (Exception ex) {
610 ex);
644 } catch (Exception ex) {
646 (Exception) ex.getCause());
648 ex);
1118 throw new InvalidArgumentException(ex.getMessage(), ex); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 152 } catch (ParseException ex) {
153 ex.addContext("...while parsing attributes[" + i + "]");
154 throw ex;
155 } catch (RuntimeException ex) {
156 ParseException pe = new ParseException(ex);
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 93 } catch (UnsupportedEncodingException ex) {
94 throw new RuntimeException("shouldn't happen", ex);
99 } catch (ParseException ex) {
102 ex.printStackTrace();
104 ex.printContext(System.err);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageProcessor.java 140 } catch (InterruptedException ex) {
157 } catch (SocketException ex) {
160 "Fatal - SocketException occured while Accepting connection", ex);
164 } catch (SSLException ex) {
167 "Fatal - SSSLException occured while Accepting connection", ex);
169 } catch (IOException ex) {
171 sipStack.getStackLogger().logError("Problem Accepting Connection", ex);
173 } catch (Exception ex) {
174 sipStack.getStackLogger().logError("Unexpected Exception!", ex);
278 } catch (UnknownHostException ex) {
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 469 } catch (Exception ex) {
470 Log.e(TAG, "got exception creating words table: " + ex.toString());
482 } catch (Exception ex) {
483 Log.e(TAG, "got exception creating indices: " + ex.toString());
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SocketTest.java 64 } catch (IOException ex) {
65 lastEx = ex;
135 } catch (InterruptedException ex) {
265 } catch (Exception ex) {
266 error = ex;
288 } catch (Exception ex) {
289 throw new RuntimeException(ex);
MiscRegressionTest.java 57 } catch (Exception ex) {
58 throw new RuntimeException(ex);
64 } catch (Exception ex) {
65 throw new RuntimeException(ex);
127 } catch (Exception ex) {
128 throw new RuntimeException(ex);
195 } catch (Exception ex) {
196 throw new RuntimeException(ex);
216 } catch (Exception ex) {
217 throw new RuntimeException(ex);
    [all...]
SSLSocketTest.java 162 } catch (InterruptedException ex) {
257 } catch (IOException ex) {
276 } catch (IOException ex) {
277 android.util.Log.d("SSLSocketTest", "Exception", ex);
296 } catch (IOException ex) {
297 android.util.Log.d("SSLSocketTest", "Exception", ex);
347 } catch (Exception ex) {
349 "testMultithreadedClose() reader got " + ex.toString());
360 } catch (Exception ex) {
362 "testMultithreadedClose() closer got " + ex.toString())
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
XPathException.java 72 public XPathException(String message, ExpressionNode ex)
75 this.setLocator(ex);
76 setStylesheetNode(getStylesheetNode(ex));
95 public org.w3c.dom.Node getStylesheetNode(ExpressionNode ex)
98 ExpressionNode owner = getExpressionOwner(ex);
112 protected ExpressionNode getExpressionOwner(ExpressionNode ex)
114 ExpressionNode parent = ex.exprGetParent();
  /libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 44 } catch (NoSuchFieldException ex) {
45 INITIALIZEFAILED = new RuntimeException(ex);
46 } catch (IllegalAccessException ex) {
47 INITIALIZEFAILED = new RuntimeException(ex);
190 } catch (InterruptedException ex) {
245 } catch (InterruptedException ex) {
246 throw new RuntimeException("shouldn't happen", ex);
  /external/tcpdump/missing/
getaddrinfo.c 147 #define WILD_AF(ex) ((ex)->e_wild & 0x01)
148 #define WILD_SOCKTYPE(ex) ((ex)->e_wild & 0x02)
149 #define WILD_PROTOCOL(ex) ((ex)->e_wild & 0x04)
301 const struct explore *ex; local
353 for (ex = explore; ex->e_af >= 0; ex++)
    [all...]
  /external/quake/quake/src/QW/client/
cl_tent.c 170 explosion_t *ex; local
253 ex = CL_AllocExplosion ();
254 VectorCopy (pos, ex->origin);
255 ex->start = cl.time;
256 ex->model = Mod_ForName ("progs/s_explod.spr", true);
427 explosion_t *ex; local
430 for (i=0, ex=cl_explosions ; i< MAX_EXPLOSIONS ; i++, ex++)
432 if (!ex->model)
434 f = 10*(cl.time - ex->start)
    [all...]
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 69 } catch (IOException ex) {
71 str.append(ex.toString());
85 } catch (IOException ex) {
99 } catch (IOException ex) {
148 } catch (IOException ex) {
149 throw new RuntimeException(ex);
169 } catch (IOException ex) {
170 throw new RuntimeException(ex);
209 } catch (FileNotFoundException ex) {
210 throw new RuntimeException(ex);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java 77 catch (InvocationTargetException ex) {
79 ex.getTargetException(),
82 catch (Exception ex) {
83 throw new DOMTestIncompatibleException(ex, null);
97 catch (ParserConfigurationException ex) {
98 throw new DOMTestIncompatibleException(ex, null);
100 catch (SAXException ex) {
101 throw new DOMTestIncompatibleException(ex, null);
208 catch (Exception ex) {
209 throw new DOMTestLoadException(ex);
    [all...]
XercesHTMLDocumentBuilderFactory.java 77 catch (InvocationTargetException ex) {
79 ex.getTargetException(),
82 catch (Exception ex) {
83 throw new DOMTestIncompatibleException(ex, null);
97 catch (ParserConfigurationException ex) {
98 throw new DOMTestIncompatibleException(ex, null);
100 catch (SAXException ex) {
101 throw new DOMTestIncompatibleException(ex, null);
208 catch (Exception ex) {
209 throw new DOMTestLoadException(ex);
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 317 UnsupportedEncodingException ex = new UnsupportedEncodingException(charsetName); local
318 ex.initCause(cause);
319 throw ex;
336 } catch (UnsupportedCharsetException ex) {
456 } catch (CharacterCodingException ex) {
457 throw new Error(ex.getMessage(), ex); local
491 } catch (CharacterCodingException ex) {
492 throw new Error(ex.getMessage(), ex); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 88 } catch (Exception ex) {
89 ex.printStackTrace();
112 } catch (Exception ex) {
113 ex.printStackTrace();
137 } catch (Throwable ex) {
138 thrownExceptions.add(ex);
181 } catch (Exception ex) {
182 ex.printStackTrace();
218 } catch (Exception ex) {
219 ex.printStackTrace()
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
X509TrustManagerTest.java 33 } catch (Exception ex) {
34 fail("Unexpected exception " + ex);
47 } catch (Exception ex) {
48 fail("Unexpected exception " + ex);
141 } catch (Exception ex) {
142 fail("Unexpected exception " + ex);
234 } catch (Exception ex) {
235 fail("Unexpected exception " + ex);
253 } catch (Exception ex) {
254 fail("Unexpected exception " + ex);
    [all...]

Completed in 475 milliseconds

<<11121314151617181920>>