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

<<41424344454647484950>>

  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
StockSource.java 89 } catch (Exception ex) {
90 log(TAG, ex.toString());
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 97 } catch (FileNotFoundException ex) {
98 throw new IOException(ex);
  /packages/apps/ContactsCommon/libs/
libphonenumber-6.2.jar 
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPMessage.java 391 } catch (UnsupportedEncodingException ex) {
392 InternalErrorHandler.handleException(ex);
443 } catch (UnsupportedEncodingException ex) {
444 InternalErrorHandler.handleException(ex);
455 } catch (UnsupportedEncodingException ex) {
456 InternalErrorHandler.handleException(ex);
520 } catch (Exception ex) {
521 InternalErrorHandler.handleException(ex);
548 } catch (Exception ex) {
568 } catch (SIPDuplicateHeaderException ex) {
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 278 } catch (RemoteException ex) {
280 } catch (NullPointerException ex) {
378 } catch (RemoteException ex) {
432 } catch (RemoteException ex) {
442 } catch (RemoteException ex) {
634 } catch (RemoteException ex) {
723 } catch (RemoteException ex) {
743 } catch (RemoteException ex) {
796 } catch (RemoteException ex) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java 236 } catch (IllegalStateException ex) {
414 } catch (java.text.ParseException ex) {
538 } catch (IOException ex) {
540 sipStack.getStackLogger().logException(ex);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
extent.c 93 static void dbg_show_extent(struct ext3_extent *ex)
96 ext2fs_le32_to_cpu(ex->ee_block),
97 ext2fs_le32_to_cpu(ex->ee_block) +
98 ext2fs_le16_to_cpu(ex->ee_len) - 1,
99 ext2fs_le16_to_cpu(ex->ee_len),
100 ext2fs_le32_to_cpu(ex->ee_start),
101 ext2fs_le16_to_cpu(ex->ee_start_hi));
126 #define dbg_show_extent(ex) do { } while (0)
127 #define dbg_print_extent(desc, ex) do { } while (0)
280 struct ext3_extent *ex; local
769 struct ext3_extent *ex; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 452 } catch (SQLException ex) {
454 Log.e(TAG, ex.getMessage(), ex);
483 } catch (SQLException ex) {
485 Log.e(TAG, ex.getMessage(), ex);
562 } catch (SQLException ex) {
564 Log.e(TAG, ex.getMessage(), ex);
629 } catch (RuntimeException ex) {
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 183 int ex, ey, ez; local
200 xs = frexp(x, &ex);
204 spread = ex + ey - ez;
255 spread = ex + ey;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 270 } catch (SQLiteDoneException ex) {
271 expectedException = ex;
291 } catch (SQLiteDoneException ex) {
292 expectedException = ex;
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 55 * @param ex {@code non-null;} the exception to annotate
57 public abstract void annotate(ExceptionWithContext ex);
  /dalvik/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 58 } catch (IndexOutOfBoundsException ex) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 171 } catch (final Exception ex) {
172 Log.i(TAG, "Error converting RawContact to JSONObject" + ex.toString());
230 } catch (final Exception ex) {
231 Log.i(TAG, "Error parsing JSON contact object" + ex.toString());
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
HandlerTest.java 345 public void reportError(String msg, Exception ex, int code) {
346 super.reportError(msg, ex, code);
367 public void error(String msg, Exception ex, int errorCode) {
369 CallVerificationStack.getInstance().push(ex);
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport.java 69 } catch (Exception ex) {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport.java 69 } catch (Exception ex) {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport.java 69 } catch (Exception ex) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SecuritySupport.java 67 } catch (Exception ex) {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SecuritySupport.java 69 } catch (Exception ex) {
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
SecuritySupport.java 69 } catch (Exception ex) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PKIXCertPath.java 212 catch (IOException ex)
214 throw new CertificateException("IOException throw while decoding CertPath:\n" + ex.toString());
216 catch (NoSuchProviderException ex)
218 throw new CertificateException("BouncyCastle provider not found while trying to get a CertificateFactory:\n" + ex.toString());
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 77 double ex = interp_cubic_coords(&src[0].x, (t1*2+t2)/3); local
83 double mx = ex * 27 - ax * 8 - dx;
95 double ex = interp_cubic_coords(&src[0].x, (t1 * 2 + t2) / 3); local
99 double mx = ex * 27 - a.x * 8 - d.x;
  /external/chromium_org/third_party/tcmalloc/vendor/
autogen.sh 15 set -ex
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-100859.js 35 } catch (ex) {
36 assertTrue(ex instanceof RangeError);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
BasicRegisterMapper.java 59 } catch (IndexOutOfBoundsException ex) {

Completed in 1180 milliseconds

<<41424344454647484950>>