HomeSort by relevance Sort by last modified time
    Searched defs:ex (Results 101 - 125 of 281) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewManager.java 66 } catch (IOException ex) {
67 ex.printStackTrace();
  /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());
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 129 } catch (SocketException ex) {
130 throw new IOException(ex.getMessage());
246 } catch (SocketTimeoutException ex) {
248 } catch (SocketException ex) {
258 } catch (IOException ex) {
260 ex.printStackTrace();
264 } catch (Exception ex) {
268 InternalErrorHandler.handleException(ex);
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 316 UnsupportedEncodingException ex = new UnsupportedEncodingException(charsetName); local
317 ex.initCause(cause);
318 throw ex;
335 } catch (UnsupportedCharsetException ex) {
455 } catch (CharacterCodingException ex) {
456 throw new Error(ex.getMessage(), ex); local
490 } catch (CharacterCodingException ex) {
491 throw new Error(ex.getMessage(), ex); local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
X509KeyManagerTest.java     [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 131 } catch (XmlPullParserException ex) {
132 if (ex.getDetail() instanceof IOException) {
133 throw (IOException) ex.getDetail();
135 if (ex.getDetail() instanceof RuntimeException) {
136 throw (RuntimeException) ex.getDetail();
143 locator.setLineNumber(ex.getLineNumber());
144 locator.setColumnNumber(ex.getColumnNumber());
146 SAXParseException newEx = new SAXParseException(ex.getMessage(), locator);
424 } catch (NumberFormatException ex) {
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 93 } catch (IllegalArgumentException ex) {
104 } catch (IllegalArgumentException ex) {
152 } catch (InvalidArgumentException ex) {
153 System.err.println(ex.getMessage());
  /dalvik/tests/031-class-attributes/src/
ClassAttrs.java 84 } catch (NoSuchMethodException ex) {
86 ex.printStackTrace();
92 } catch (IllegalAccessException ex) {
93 throw new RuntimeException(ex);
94 } catch (InvocationTargetException ex) {
95 throw new RuntimeException(ex);
  /dalvik/tests/050-sync-test/src/
Main.java 160 catch (Exception ex) {
161 ex.printStackTrace();
  /dalvik/tests/064-field-access/src/
Main.java 95 } catch (Exception ex) {
98 + ex.getClass());
99 ex.printStackTrace();
101 if (!expectedException.equals(ex.getClass())) {
104 + ex.getClass());
105 ex.printStackTrace();
327 } catch (Exception ex) {
330 + ex.getClass());
331 ex.printStackTrace();
333 if (!expectedException.equals(ex.getClass()))
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
AbstractMessageParser.java 161 } catch (ParseException ex) {
162 throw new ProtocolException(ex.getMessage());
  /external/kernel-headers/original/linux/
poll.h 70 unsigned long *in, *out, *ex; member in struct:__anon7401
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 95 final ExcerptInputStream ex = new ExcerptInputStream(body); local
97 for (int n; 0 < (n = ex.read(b));) {
100 excerpt = ex.getExcerpt();
  /external/proguard/src/proguard/io/
DataEntryCopier.java 75 catch (IOException ex)
77 System.err.println("Warning: can't write resource [" + dataEntry.getName() + "] (" + ex.getMessage() + ")");
242 catch (Exception ex)
244 ex.printStackTrace();
  /external/qemu/distrib/sdl-1.2.12/src/video/aalib/
SDL_aavideo.c 205 register int ex, spx = 0, ddx, ddx1; local
221 ex = -ddx1;
226 ex += ddx;
227 if (ex > 0) {
229 ex -= ddx1;
  /external/valgrind/main/mpi/
mpiwrap_type_test.c 122 MPI_Aint lb, ub, ex; local
151 r = MPI_Type_extent( *tyP, &ex );
153 printf("sendToMyself: ex=%d (%d,%d)\n", (int)ex, (int)lb, (int)ub);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 106 } catch (IOException ex) {
107 ex.printStackTrace();
141 } catch (IOException ex) {
142 throw new FileNotFoundException("Error reading " + url + ":" + ex.toString());
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
quantize.c 244 Word32 ex; local
251 ex = norm_l(accu);
252 accu = accu << ex;
253 specExp = INT_BITS-1 - ex;
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
EngineParameters.java 17 package com.android.ex.variablespeed;
SingleThreadedMediaPlayerProxy.java 17 package com.android.ex.variablespeed;
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDocumentBuilderFactory.java 64 catch (Exception ex) {
65 throw new DOMTestIncompatibleException(ex, null);
95 catch (InvocationTargetException ex) {
96 throw new DOMTestLoadException(ex.getTargetException());
98 catch (Exception ex) {
99 throw new DOMTestLoadException(ex);
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 95 } catch (Exception ex) {
96 ex.printStackTrace();
119 } catch (Exception ex) {
120 ex.printStackTrace();
144 } catch (Throwable ex) {
145 thrownExceptions.add(ex);
188 } catch (Exception ex) {
189 ex.printStackTrace();
225 } catch (Exception ex) {
226 ex.printStackTrace()
    [all...]
OldAndroidDatagramTest.java 63 } catch (InterruptedException ex) {
76 } catch (java.io.IOException ex) {
77 ex.printStackTrace();
90 } catch (IOException ex) {
92 "Creating datagram reflector failed", ex);
143 } catch (InterruptedException ex) {
  /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());
  /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...]

Completed in 2186 milliseconds

1 2 3 45 6 7 8 91011>>