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

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/
JAXPDOMTestDocumentBuilderFactory.java 63 catch (ParserConfigurationException ex) {
64 throw new DOMTestIncompatibleException(ex, null);
96 public void error(SAXParseException ex) {
99 parseException = ex;
103 public void warning(SAXParseException ex) {
107 public void fatalError(SAXParseException ex) {
109 parseException = ex;
129 catch (Exception ex) {
130 parseException = ex;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelLockingTest.java 91 } catch (NonWritableChannelException ex) {
99 } catch (NonReadableChannelException ex) {
117 } catch (IllegalArgumentException ex) {
123 } catch (IllegalArgumentException ex) {
129 } catch (IllegalArgumentException ex) {
161 } catch (NonWritableChannelException ex) {
171 } catch (NonWritableChannelException ex) {
179 } catch (IllegalArgumentException ex) {
196 } catch (OverlappingFileLockException ex) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateAttributeNS.java 73 } catch (DOMException ex) {
74 success = (ex.code == DOMException.NAMESPACE_ERR);
91 } catch (DOMException ex) {
92 success = (ex.code == DOMException.NAMESPACE_ERR);
138 } catch (DOMException ex) {
139 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
156 } catch (DOMException ex) {
157 success = (ex.code == DOMException.NAMESPACE_ERR);
184 } catch (DOMException ex) {
CreateElementNS.java 91 } catch (DOMException ex) {
92 success = (ex.code == DOMException.NAMESPACE_ERR);
109 } catch (DOMException ex) {
110 success = (ex.code == DOMException.NAMESPACE_ERR);
157 } catch (DOMException ex) {
158 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
175 } catch (DOMException ex) {
176 success = (ex.code == DOMException.NAMESPACE_ERR);
205 } catch (DOMException ex) {
DOMImplementationCreateDocument.java 100 } catch (DOMException ex) {
101 success = (ex.code == DOMException.NAMESPACE_ERR);
121 } catch (DOMException ex) {
122 success = (ex.code == DOMException.NAMESPACE_ERR);
141 } catch (DOMException ex) {
142 success = (ex.code == DOMException.NAMESPACE_ERR);
DocumentCreateElementNS.java 91 } catch (DOMException ex) {
92 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
109 } catch (DOMException ex) {
110 success = (ex.code == DOMException.NAMESPACE_ERR);
133 } catch (DOMException ex) {
134 success = (ex.code == DOMException.NAMESPACE_ERR);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 69 * for example using {@code ex.printStackTrace()}) of both the thread
407 final Throwable ex; field in class:ForkJoinTask.ExceptionNode
410 ExceptionNode(ForkJoinTask<?> task, Throwable ex, ExceptionNode next) {
412 this.ex = ex;
423 final int recordExceptionalCompletion(Throwable ex) {
435 t[i] = new ExceptionNode(this, ex, t[i]);
454 private int setExceptionalCompletion(Throwable ex) {
455 int s = recordExceptionalCompletion(ex);
457 internalPropagateException(ex);
543 Throwable ex; local
741 Throwable ex = null; local
792 Throwable ex = null; local
962 Throwable ex; local
1048 Throwable ex; local
1488 Object ex = s.readObject(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
ModelInterpreter.java 105 } catch (IOException ex) {
107 } catch (IndexOutOfBoundsException ex) {
113 } catch (UnsupportedEncodingException ex) {
206 } catch (java.io.IOException ex) {
208 "IOException on socket.accept(); stopping", ex);
215 } catch (java.io.IOException ex) {
217 "IOException on accepted socket(); re-listening", ex);
244 } catch (InterruptedException ex) {
254 } catch (InterpreterEx ex) {
255 println(ex.mResult)
    [all...]
  /external/chromium-trace/trace-viewer/src/ui/
filter_control.css 16 right: 0.5ex;
19 width: 30ex;
34 width: 30ex;
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
LoginContext.java 205 } catch (PrivilegedActionException ex) {
206 Throwable cause = ex.getCause();
242 } catch (PrivilegedActionException ex) {
243 throw (LoginException) ex.getException();
279 } catch (Throwable ex) {
281 firstProblem = ex;
343 } catch (Throwable ex) {
345 firstProblem = ex;
378 } catch ( /*LoginException*/Throwable ex) {
380 firstProblem = ex;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AdaptivePlaybackTest.java 160 public void runEOS() { ex(AllCodecs(), new Test[] {
170 public void runAll() { ex(AllCodecs(), allTests); }
171 public void runSW() { ex(SWCodecs(), allTests); }
172 public void runHW() { ex(HWCodecs(), allTests); }
178 public void runH264() { ex(H264(), allTests); }
179 public void runHEVC() { ex(HEVC(), allTests); }
180 public void runVP8() { ex(VP8(), allTests); }
181 public void runVP9() { ex(VP9(), allTests); }
182 public void runMpeg4() { ex(Mpeg4(), allTests); }
183 public void runH263() { ex(H263(), allTests);
284 private void ex(Iterable<Codec> codecList, Test test) { method in class:AdaptivePlaybackTest
285 ex(codecList, new Test[] { test } ); method
288 private void ex(Iterable<Codec> codecList, Test[] testList) { method in class:AdaptivePlaybackTest
    [all...]
NativeDecoderTest.java 127 MediaExtractor ex = new MediaExtractor(); local
128 ex.setDataSource(path);
129 return getSampleSizes(ex);
134 MediaExtractor ex = new MediaExtractor(); local
135 ex.setDataSource(fd, offset, size);
136 return getSampleSizes(ex);
139 private static int[] getSampleSizes(MediaExtractor ex) {
142 int numtracks = ex.getTrackCount();
146 MediaFormat format = ex.getTrackFormat(i);
161 ex.selectTrack(i)
227 MediaExtractor ex = new MediaExtractor(); local
494 MediaExtractor ex = new MediaExtractor(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 99 } catch (IOException ex) {
100 Log.e(TAG, "Cannot read peer credentials", ex);
101 throw ex;
153 } catch (IOException ex) {
154 Log.w(TAG, "IOException on command socket " + ex.getMessage());
251 } catch (IOException ex) {
252 logAndPrintError(newStderr, "Exception creating pipe", ex);
253 } catch (ErrnoException ex) {
254 logAndPrintError(newStderr, "Exception creating pipe", ex);
255 } catch (IllegalArgumentException ex) {
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 273 } catch (RemoteException ex) {
306 } catch (RemoteException ex) {
386 } catch (RemoteException ex) {
449 } catch (RemoteException ex) {
512 } catch (RemoteException ex) {
579 } catch (RemoteException ex) {
609 } catch (RemoteException ex) {
640 } catch (RemoteException ex) {
666 } catch (RemoteException ex) {
702 } catch (RemoteException ex) {
    [all...]
  /art/test/054-uncaught/src/
Main.java 35 } catch (InterruptedException ex) {
36 ex.printStackTrace();
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_rem_pio2l.h 68 int e0,ex,i,j,nx; local
73 ex = expsign & 0x7fff;
74 if (ex < BIAS + 45 || ex == BIAS + 45 &&
90 j = ex;
119 if(ex==0x7fff) { /* x is inf or NaN */
124 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
125 u1.xbits.expsign = ex - e0;
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 86 } catch (IOException ex) {
87 throw new RuntimeException(file + ": trouble reading", ex);
  /dalvik/dexgen/src/com/android/dexgen/util/
FileUtils.java 86 } catch (IOException ex) {
87 throw new RuntimeException(file + ": trouble reading", ex);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3exception.h 207 void (*print) (struct ANTLR3_EXCEPTION_struct * ex);
208 void (*freeEx) (struct ANTLR3_EXCEPTION_struct * ex);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionDebuggee.java 45 DebuggeeException ex = new DebuggeeException("dummy exception"); local
60 logWriter.println("DUMP{" + ex + "}");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ExceptionDebuggee.java 47 DebuggeeException ex = new DebuggeeException("dummy exception"); local
64 logWriter.println("DUMP{" + ex + "}");
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRedirectHandler.java 120 } catch (URISyntaxException ex) {
121 throw new ProtocolException("Invalid redirect URI: " + location, ex);
147 } catch (URISyntaxException ex) {
148 throw new ProtocolException(ex.getMessage(), ex); local
170 } catch (URISyntaxException ex) {
171 throw new ProtocolException(ex.getMessage(), ex); local
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
IteratorPool.java 96 catch (Exception ex)
98 throw new WrappedRuntimeException(ex);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
JcaJceUtils.java 32 catch (Exception ex)
48 catch (Exception ex)
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
TranslatorManager.java 118 } catch (RemoteException ex) {
119 Log.e(LOG_TAG, "Error in getTranslator", ex);
168 } catch (RemoteException ex) {
171 Log.e(LOG_TAG, "Error when setting callback", ex);
197 } catch (RemoteException ex) {
198 Log.e(LOG_TAG, "Error in translate", ex);
210 } catch (RemoteException ex) {
211 Log.e(LOG_TAG, "Error in backTranslate", ex);

Completed in 1078 milliseconds

<<11121314151617181920>>