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

1 2 3 4 5 6 78 91011>>

  /frameworks/base/tools/aidl/
generate_java.cpp 405 MethodCall* ex = new MethodCall(stubClass->transact_reply, local
407 c->statements->Add(ex);
416 MethodCall* ex = new MethodCall(stubClass->transact_reply, local
418 c->statements->Add(ex);
527 MethodCall* ex = new MethodCall(_reply, "readException", 0); local
528 tryStatement->statements->Add(ex);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 455 RuntimeException ex = new RuntimeException(sb.toString(), t); local
456 return ex;
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
VariableSpeed.java 17 package com.android.ex.variablespeed;
  /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...]
DOMTestCase.java 84 catch (InvocationTargetException ex) {
85 ex.getTargetException().printStackTrace();
87 catch (Exception ex) {
90 ex.printStackTrace();
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 206 Class<? extends IndexOutOfBoundsException> ex = null; local
211 ex = new IndexOutOfBoundsException().getClass();
217 assertTrue("Returned incorrect exception", exceptions[0].equals(ex));
425 } catch (NoSuchMethodException ex) {
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...]
  /prebuilt/common/http-client/
commons-logging-1.1.1.jar 
  /cts/tools/dasm/src/java_cup/
Main.java 373 } catch (Exception ex) {
374 ex.printStackTrace();
  /dalvik/tests/046-reflect/src/
Main.java 108 catch (Exception ex) {
110 ex.printStackTrace();
299 catch (Exception ex) {
301 ex.printStackTrace();
  /external/opencv/cvaux/src/
cvlevmarprojbandle.cpp 1326 double ex,ey; local
    [all...]
  /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/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 185 jthrowable ex = env->ExceptionOccurred(); local
186 if (ex == NULL) {
190 LOGE_EX(env, ex);
191 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...]
  /external/valgrind/main/memcheck/
mc_leakcheck.c 479 LC_Extra* ex; local
494 ex = &(lc_extras[ch_no]);
504 *pex = ex;
550 LC_Extra* ex; local
552 if ( ! lc_is_a_chunk_ptr(ptr, &ch_no, &ch, &ex) )
559 if (ptr == ch->data && is_prior_definite && ex->state != Reachable) {
562 ex->state = Reachable;
568 } else if (ex->state == Unreached) {
571 ex->state = Possible;
593 LC_Extra* ex; local
792 LC_Extra* ex = &(lc_extras)[i]; local
1107 LC_Extra* ex = &(lc_extras[i]); local
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 508 InflateException ex = new InflateException(e.getMessage()); local
509 ex.initCause(e);
510 throw ex;
512 InflateException ex = new InflateException( local
515 ex.initCause(e);
516 throw ex;
    [all...]
MenuInflater.java 202 InflateException ex = new InflateException( local
205 ex.initCause(e);
206 throw ex;
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
ModelInterpreter.java 106 } catch (IOException ex) {
108 } catch (IndexOutOfBoundsException ex) {
114 } 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.result)
    [all...]
  /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;
  /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);
406 FileNotFoundException ex = new FileNotFoundException(path + ": " + errnoException.getMessage()); local
    [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/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 603 RuntimeException ex = new IllegalArgumentException( local
605 ex.fillInStackTrace();
606 rd.setUnregisterLocation(ex);
618 RuntimeException ex = rd.getUnregisterLocation(); local
621 + " that was already unregistered", ex);
793 void setUnregisterLocation(RuntimeException ex) {
794 mUnregisterLocation = ex;
864 RuntimeException ex = new IllegalArgumentException( local
878 RuntimeException ex = sd.getUnbindLocation(); local
    [all...]

Completed in 39 milliseconds

1 2 3 4 5 6 78 91011>>