/frameworks/support/v7/mediarouter/jellybean-mr1/android/support/v7/media/ |
MediaRouterJellybeanMr1.java | 76 } catch (NoSuchMethodException ex) { 111 } catch (IllegalAccessException ex) { 112 Log.w(TAG, "Cannot scan for wifi displays.", ex); 113 } catch (InvocationTargetException ex) { 114 Log.w(TAG, "Cannot scan for wifi displays.", ex); 140 } catch (NoSuchFieldException ex) { 141 } catch (NoSuchMethodException ex) { 142 } catch (IllegalAccessException ex) { 154 } catch (IllegalAccessException ex) { 155 } catch (InvocationTargetException ex) { [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
DOM4JTestDocumentBuilderFactory.java | 85 catch (InvocationTargetException ex) { 86 throw new DOMTestIncompatibleException(ex.getTargetException(), null); 88 catch (Exception ex) { 89 throw new DOMTestIncompatibleException(ex, null); 116 catch (InvocationTargetException ex) { 117 ex.getTargetException().printStackTrace(); 118 throw new DOMTestLoadException(ex.getTargetException()); 120 catch (Exception ex) { 121 ex.printStackTrace(); 122 throw new DOMTestLoadException(ex); [all...] |
/frameworks/base/core/java/android/app/ |
StatusBarManager.java | 101 } catch (RemoteException ex) { 103 throw new RuntimeException(ex); 116 } catch (RemoteException ex) { 118 throw new RuntimeException(ex); 131 } catch (RemoteException ex) { 133 throw new RuntimeException(ex); 146 } catch (RemoteException ex) { 148 throw new RuntimeException(ex); 159 } catch (RemoteException ex) { 161 throw new RuntimeException(ex); [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassCastExceptionTest.java | 31 } catch (ClassCastException ex) { 32 assertEquals("java.lang.Exception cannot be cast to java.lang.String", ex.getMessage()); 40 } catch (ClassCastException ex) { 42 ex.getMessage()); 54 } catch (ClassCastException ex) { 55 assertNotNull(ex.getMessage()); 64 } catch (ClassCastException ex) { 65 assertNotNull(ex.getMessage()); 75 } catch (ClassCastException ex) { 76 assertNotNull(ex.getMessage()) [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
CursorBackedSuggestionCursor.java | 96 } catch (RuntimeException ex) { 98 Log.e(TAG, "close() failed, ", ex); 117 } catch (RuntimeException ex) { 119 Log.e(TAG, "getCount() failed, ", ex); 132 } catch (RuntimeException ex) { 134 Log.e(TAG, "moveToPosition() failed, ", ex); 144 } catch (RuntimeException ex) { 146 Log.e(TAG, "moveToNext() failed, ", ex); 157 } catch (RuntimeException ex) { 159 Log.e(TAG, "getPosition() failed, ", ex); [all...] |
/dalvik/dx/src/com/android/dx/command/ |
Main.java | 128 } catch (UsageException ex) { 130 } catch (RuntimeException ex) { 132 ex.printStackTrace(); 134 } catch (Throwable ex) { 136 ex.printStackTrace(); 137 if ((ex instanceof NoClassDefFoundError) 138 || (ex instanceof NoSuchMethodError)) {
|
/external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
put_long.pass.cpp | 52 std::string ex(str, iter.base()); 53 assert(ex == "0"); 61 std::string ex(str, iter.base()); 62 assert(ex == "1"); 70 std::string ex(str, iter.base()); 71 assert(ex == "-1"); 79 std::string ex(str, iter.base()); 80 assert(ex == "-1000"); 88 std::string ex(str, iter.base()); 89 assert(ex == "1000") [all...] |
put_unsigned_long.pass.cpp | 52 std::string ex(str, iter.base()); 53 assert(ex == "0"); 61 std::string ex(str, iter.base()); 62 assert(ex == "1"); 70 std::string ex(str, iter.base()); 71 assert(ex == (sizeof(unsigned long) == 4 ? "4294967295" : "18446744073709551615")); 79 std::string ex(str, iter.base()); 80 assert(ex == (sizeof(unsigned long) == 4 ? "4294966296" : "18446744073709550616")); 88 std::string ex(str, iter.base()); 89 assert(ex == "1000") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
put_long.pass.cpp | 52 std::string ex(str, iter.base()); 53 assert(ex == "0"); 61 std::string ex(str, iter.base()); 62 assert(ex == "1"); 70 std::string ex(str, iter.base()); 71 assert(ex == "-1"); 79 std::string ex(str, iter.base()); 80 assert(ex == "-1000"); 88 std::string ex(str, iter.base()); 89 assert(ex == "1000") [all...] |
put_unsigned_long.pass.cpp | 52 std::string ex(str, iter.base()); 53 assert(ex == "0"); 61 std::string ex(str, iter.base()); 62 assert(ex == "1"); 70 std::string ex(str, iter.base()); 71 assert(ex == (sizeof(unsigned long) == 4 ? "4294967295" : "18446744073709551615")); 79 std::string ex(str, iter.base()); 80 assert(ex == (sizeof(unsigned long) == 4 ? "4294966296" : "18446744073709550616")); 88 std::string ex(str, iter.base()); 89 assert(ex == "1000") [all...] |
/frameworks/base/core/tests/coretests/src/android/net/ |
LocalSocketTest.java | 89 } catch (ArrayIndexOutOfBoundsException ex) { 96 } catch (ArrayIndexOutOfBoundsException ex) { 103 } catch (ArrayIndexOutOfBoundsException ex) { 110 } catch (ArrayIndexOutOfBoundsException ex) { 117 } catch (ArrayIndexOutOfBoundsException ex) { 124 } catch (ArrayIndexOutOfBoundsException ex) { 143 } catch (IOException ex) { 152 } catch (IOException ex) { 161 } catch (IOException ex) {
|
/frameworks/base/location/java/android/location/ |
Geocoder.java | 133 String ex = mService.getFromLocation(latitude, longitude, maxResults, local 135 if (ex != null) { 136 throw new IOException(ex); 175 String ex = mService.getFromLocationName(locationName, local 177 if (ex != null) { 178 throw new IOException(ex); 247 String ex = mService.getFromLocationName(locationName, local 250 if (ex != null) { 251 throw new IOException(ex);
|
/cts/tools/signature-tools/src/signature/ |
Main.java | 78 } catch (UsageException ex) { 80 } catch (RuntimeException ex) { 82 ex.printStackTrace(); 84 } catch (Throwable ex) { 86 ex.printStackTrace();
|
/external/libcxx/test/localization/locale.categories/category.time/locale.time.put.byname/ |
put1.pass.cpp | 60 std::string ex(str, iter.base()); 61 assert(ex == "Today is Saturday which is abreviated Sat."); 68 std::string ex(str, iter.base()); 69 assert((ex == "Today is Samedi which is abreviated Sam.")|| 70 (ex == "Today is samedi which is abreviated sam." ));
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
CSeqParser.java | 74 } catch (NumberFormatException ex) { 75 Debug.printStackTrace(ex); 77 } catch (InvalidArgumentException ex) { 78 Debug.printStackTrace(ex); 79 throw createParseException(ex.getMessage());
|
/external/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/frameworks/base/tests/CoreTests/android/core/ |
InetAddrTest.java | 65 fail("expected ex"); 66 } catch (UnknownHostException ex) { 72 fail("expected ex"); 73 } catch (UnknownHostException ex) { 79 fail("expected ex"); 80 } catch (UnknownHostException ex) { 93 } catch (InterruptedException ex) { 95 } catch (UnknownHostException ex) {
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
CameraExceptionHandler.java | 17 package com.android.ex.camera2.portability; 95 * @param ex The runtime exception object. 98 final RuntimeException ex, final String commandHistory, 103 mCallback.onCameraException(ex, commandHistory, action, state); 112 * @param ex The runtime exception object. 114 public void onDispatchThreadException(final RuntimeException ex) { 118 mCallback.onDispatchThreadException(ex);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.put.byname/ |
put1.pass.cpp | 60 std::string ex(str, iter.base()); 61 assert(ex == "Today is Saturday which is abbreviated Sat."); 68 std::string ex(str, iter.base()); 69 assert((ex == "Today is Samedi which is abbreviated Sam.")|| 70 (ex == "Today is samedi which is abbreviated sam." ));
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg) 49 # define _STLP_THROW_MSG(ex,msg) puts(msg),_STLP_ABORT()
|