HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 76 - 100 of 4577) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
RetryAfterParser.java 81 } catch (NumberFormatException ex) {
82 throw createParseException(ex.getMessage());
83 } catch (InvalidArgumentException ex) {
84 throw createParseException(ex.getMessage());
107 } catch (NumberFormatException ex) {
108 throw createParseException(ex.getMessage());
109 } catch (InvalidArgumentException ex) {
110 throw createParseException(ex.getMessage());
CSeqParser.java 74 } catch (NumberFormatException ex) {
75 Debug.printStackTrace(ex);
77 } catch (InvalidArgumentException ex) {
78 Debug.printStackTrace(ex);
79 throw createParseException(ex.getMessage());
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Item.java 77 } catch (Exception ex) {
78 throw addExceptionContext(ex);
96 } catch (Exception ex) {
97 throw addExceptionContext(ex);
118 } catch (Exception ex) {
119 throw addExceptionContext(ex);
172 * @param ex The exception that occured
175 protected final RuntimeException addExceptionContext(Exception ex) {
176 return ExceptionWithContext.withContext(ex, getConciseIdentity());
  /frameworks/base/core/java/com/android/internal/logging/
AndroidConfig.java 43 } catch (Exception ex) {
44 ex.printStackTrace();
  /frameworks/ex/carousel/test/
Android.mk 22 ../../../../frameworks/ex/carousel/java/com/android/ex/carousel/carousel.rs
  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 34 } catch (Exception ex) {
96 } catch (Exception ex) {
97 if (ex instanceof ArithmeticException) {
100 if (ex instanceof NullPointerException) {
102 throw (NullPointerException) ex;
107 } catch (Exception ex) {
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 28 } catch (InterruptedException ex) {
53 } catch (NoSuchFieldException ex) {
54 throw new RuntimeException(ex);
55 } catch (IllegalAccessException ex) {
56 throw new RuntimeException(ex);
89 } catch (InterruptedException ex) {
  /dalvik/vm/mterp/x86/
unopWide.S 14 $instr1 # ex: negl %eax
15 $instr2 # ex: adcl $$0,%ecx
16 $instr3 # ex: negl %ecx
  /external/clang/www/
menu.css 7 width:25ex;
12 left:29ex;
13 padding-right:4ex;
  /external/compiler-rt/www/
menu.css 7 width:25ex;
12 left:29ex;
13 padding-right:4ex;
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
FileLocator.java 56 } catch (IOException ex) {
57 throw new AssetLoadException("Root path is invalid", ex);
74 }catch (FileNotFoundException ex){
77 throw new AssetLoadException("Failed to open file: " + file, ex);
94 } catch (IOException ex) {
95 throw new AssetLoadException("Failed to get file canonical path " + file, ex);
  /external/webkit/LayoutTests/http/tests/appcache/resources/
offline-access.js 14 alert("FAIL, unexpected response: " + ex);
15 } catch (ex) {
16 alert("FAIL, unexpected error: " + ex);
  /frameworks/base/core/java/android/app/
AlarmManager.java 138 } catch (RemoteException ex) {
193 } catch (RemoteException ex) {
259 } catch (RemoteException ex) {
276 } catch (RemoteException ex) {
289 } catch (RemoteException ex) {
302 } catch (RemoteException ex) {
  /frameworks/compile/libbcc/runtime/www/
menu.css 7 width:25ex;
12 left:29ex;
13 padding-right:4ex;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns05.java 90 } catch (DOMException ex) {
91 switch (ex.code) {
97 throw ex;
105 } catch (DOMException ex) {
106 switch (ex.code) {
112 throw ex;
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
AppHarness.java 70 } catch (IOException ex){
71 ex.printStackTrace();
84 }catch (ClassNotFoundException ex){
85 ex.printStackTrace();
86 }catch (InstantiationException ex){
87 ex.printStackTrace();
88 }catch (IllegalAccessException ex){
89 ex.printStackTrace();
116 } catch (MalformedURLException ex) {
117 ex.printStackTrace()
    [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...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
AppletHarness.java 79 } catch (IOException ex){
84 + ex.getMessage(),
87 ex.printStackTrace();
92 } catch (IOException ex) {
109 }catch (ClassNotFoundException ex){
110 ex.printStackTrace();
111 }catch (InstantiationException ex){
112 ex.printStackTrace();
113 }catch (IllegalAccessException ex){
114 ex.printStackTrace()
    [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 113 } catch (UsageException ex) {
115 } catch (RuntimeException ex) {
117 ex.printStackTrace();
119 } catch (Throwable ex) {
121 ex.printStackTrace();
122 if ((ex instanceof NoClassDefFoundError)
123 || (ex instanceof NoSuchMethodError)) {
  /external/skia/src/core/
SkClampRange.cpp 64 // start with ex equal to the last computed value
65 int64_t ex = fx + (count - 1) * dx; local
66 fOverflowed = overflows_fixed(ex);
68 if ((uint64_t)(fx | ex) <= 0xFFFF) {
74 if (fx <= 0 && ex <= 0) {
79 if (fx >= 0xFFFF && ex >= 0xFFFF) {
87 // now make ex be 1 past the last computed value
88 ex += dx;
89 fOverflowed = overflows_fixed(ex);
117 ex = fx + dx * count
    [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/kernel-headers/original/asm-arm/
elf.h 108 #define SET_PERSONALITY(ex,ibcs2) \
109 set_personality(((ex).e_flags&EF_ARM_APCS26 ?PER_LINUX :PER_LINUX_32BIT))
124 #define SET_PERSONALITY(ex,ibcs2) \
127 if (((ex).e_flags & EF_ARM_EABI_MASK) || \
128 ((ex).e_flags & EF_ARM_SOFT_FLOAT)) \

Completed in 725 milliseconds

1 2 34 5 6 7 8 91011>>