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

<<11121314151617181920>>

  /external/openssl/crypto/des/
des.c 370 int num=0,j,k,l,rem,ll,len,last,ex=0; local
490 ex=1;
567 ex=1;
570 if (ex) {
575 ex=0;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 73 } catch (IOException ex) {
96 } catch (ParseException ex) {
318 }catch (IOException ex) {
320 ex.printStackTrace();
323 } catch (RuntimeException ex) {
325 ex.printStackTrace();
327 } catch (Throwable ex) {
329 ex.printStackTrace();
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 184 jthrowable ex = env->ExceptionOccurred(); local
185 if (ex == NULL) {
189 LOGE_EX(env, ex);
190 env->DeleteLocalRef(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...]
  /frameworks/base/core/java/android/view/
MenuInflater.java 217 InflateException ex = new InflateException( local
220 ex.initCause(e);
221 throw ex;
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
ProfileActivity.java 191 } catch (IOException ex) {
192 ex.printStackTrace();
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselViewHelper.java 1 package com.android.ex.carousel;
15 import com.android.ex.carousel.CarouselRS.CarouselCallback;
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
MediaPlayerProxyTestCase.java 17 package com.android.ex.variablespeed;
  /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...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
SupportMenuInflater.java 223 InflateException ex = new InflateException( local
226 ex.initCause(e);
227 throw ex;
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 84 catch (InvocationTargetException ex) {
85 ex.getTargetException().printStackTrace();
87 catch (Exception ex) {
90 ex.printStackTrace();
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 82 } catch (UnknownHostException ex) {
83 throw new AssertionError(ex); // Can't happen.
101 } catch (SocketTimeoutException ex) {
102 throw new AssertionError(ex); // Can't happen for a connect without a timeout.
115 } catch (SocketException ex) {
116 throw ex; // We don't want to doubly wrap these.
117 } catch (SocketTimeoutException ex) {
118 throw ex; // We don't want to doubly wrap these.
119 } catch (IOException ex) {
120 throw new SocketException(ex);
409 FileNotFoundException ex = new FileNotFoundException(path + ": " + errnoException.getMessage()); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 268 Class[] ex = mth.getExceptionTypes(); local
270 1, ex.length);
271 assertTrue("Returned incorrect exception type", ex[0]
274 ex = mth.getExceptionTypes();
276 0, ex.length);
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 213 } catch(XmlPullParserException ex) {
214 // throw new SAXNotSupportedException("problem with setting feature "+name+": "+ex);
242 } catch(XmlPullParserException ex) {
243 throw new SAXNotSupportedException("not supported set property "+name+": "+ ex);
309 } catch (XmlPullParserException ex) {
311 "parsing initialization error: "+ex, this, ex);
312 //if(DEBUG) ex.printStackTrace();
330 } catch (XmlPullParserException ex) {
332 "parsing initialization error: "+ex, this, ex)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 310 } catch (Exception ex) {
311 sipStack.getStackLogger().logError("unexpected exception", ex);
344 } catch (IOException ex) {
371 } catch (IllegalStateException ex) {
    [all...]
  /frameworks/base/core/java/android/app/
LoadedApk.java 637 RuntimeException ex = new IllegalArgumentException( local
639 ex.fillInStackTrace();
640 rd.setUnregisterLocation(ex);
652 RuntimeException ex = rd.getUnregisterLocation(); local
655 + " that was already unregistered", ex);
902 RuntimeException ex = new IllegalArgumentException( local
916 RuntimeException ex = sd.getUnbindLocation(); local
    [all...]
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/devtools/tools/lib/
sdkmanager.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 494 catch (IOException ex) {
495 Log.e("MusicService", "IOException playing next song: " + ex.getMessage());
496 ex.printStackTrace();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest1.java 1514 java.io.IOException ex = new java.io.InvalidClassException(FOO); local
1543 java.io.IOException ex = new java.io.InvalidObjectException(FOO); local
1572 java.io.IOException ex = new java.io.NotActiveException(FOO); local
1601 java.io.IOException ex = new java.io.NotSerializableException(FOO); local
1630 java.io.IOException ex = new java.io.StreamCorruptedException(FOO); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLTest.java 576 } catch (MalformedURLException ex) {
578 throw new RuntimeException(ex.getMessage());
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 348 catch (CertificateEncodingException ex)
350 throw new IOException(ex.toString());
370 catch (NoSuchProviderException ex)
372 throw new IOException(ex.toString());
374 catch (CertificateException ex)
376 throw new IOException(ex.toString());
  /external/doclava/src/com/google/doclava/
MethodInfo.java 373 ClassInfo ex = list[i].exception(); local
374 if (ex != null && ex.qualifiedName().equals(qn)) {

Completed in 1220 milliseconds

<<11121314151617181920>>