HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 276 - 300 of 4566) sorted by null

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptLanguageParser.java 113 } catch (NumberFormatException ex) {
114 throw createParseException(ex.getMessage());
115 } catch (InvalidArgumentException ex) {
116 throw createParseException(ex.getMessage());
ParseExceptionListener.java 53 * @param ex - parse exception being processed.
59 ParseException ex,
  /external/proguard/src/proguard/ant/
ConfigurationElement.java 108 catch (ParseException ex)
110 throw new BuildException(ex.getMessage());
118 catch (IOException ex)
120 throw new BuildException(ex.getMessage());
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
dump.java 58 } catch (IOException ex) {
60 ex.printStackTrace(System.err);
65 } catch (IOException ex) {
67 ex.printStackTrace(System.err);
  /external/testng/src/main/java/org/testng/asserts/
IAssertLifecycle.java 20 * @deprecated use onAssertFailure(IAssert assertCommand, AssertionError ex) instead of.
28 void onAssertFailure(IAssert<?> assertCommand, AssertionError ex);
  /external/testng/src/test/java/test/factory/
FactoryFailureTest.java 19 catch(Exception ex) {
  /frameworks/base/core/java/android/os/health/
SystemHealthManager.java 82 } catch (RemoteException ex) {
83 throw new RuntimeException(ex);
122 } catch (RemoteException ex) {
123 throw new RuntimeException(ex);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
ReflectionUtils.java 43 Exception ex; local
47 ex = e;
49 ex = e;
51 throw new ReflectionException(ex);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java 1 package com.android.ex.photo;
8 import com.android.ex.photo.adapters.PhotoPagerAdapter;
9 import com.android.ex.photo.fragments.PhotoViewFragment;
10 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneSubInfoControllerTest.java 93 } catch (Exception ex) {
94 assertTrue(ex instanceof SecurityException);
95 assertEquals(READ_PHONE_STATE + " denied: getDeviceId", ex.getMessage());
101 } catch (Exception ex) {
102 assertTrue(ex instanceof SecurityException);
103 assertEquals(READ_PHONE_STATE + " denied: getDeviceId", ex.getMessage());
143 } catch (Exception ex) {
144 assertTrue(ex instanceof SecurityException);
145 assertEquals(READ_PHONE_STATE + " denied: getNai", ex.getMessage());
151 } catch (Exception ex) {
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DnsBenchmark.java 44 } catch (UnknownHostException ex) {
  /libcore/dex/src/main/java/com/android/dex/util/
ExceptionWithContext.java 35 * @param ex {@code non-null;} the exception to augment
39 public static ExceptionWithContext withContext(Throwable ex, String str) {
42 if (ex instanceof ExceptionWithContext) {
43 ewc = (ExceptionWithContext) ex;
45 ewc = new ExceptionWithContext(ex);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederrEE.java 92 } catch (DOMException ex) {
93 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
102 } catch (DOMException ex) {
103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
documentinvalidcharacterexceptioncreateentref.java 76 } catch (DOMException ex) {
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreateentref1.java 73 } catch (DOMException ex) {
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreatepi.java 76 } catch (DOMException ex) {
77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
documentinvalidcharacterexceptioncreatepi1.java 73 } catch (DOMException ex) {
74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
hc_attrappendchild4.java 83 } catch (DOMException ex) {
84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
95 } catch (DOMException ex) {
96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
hc_attrinsertbefore5.java 84 } catch (DOMException ex) {
85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
96 } catch (DOMException ex) {
97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns09.java 87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
97 } catch (DOMException ex) {
98 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CoderResultTest.java 62 } catch (BufferOverflowException ex) {
68 } catch (UnsupportedOperationException ex) {
82 } catch (BufferUnderflowException ex) {
88 } catch (UnsupportedOperationException ex) {
156 } catch (UnsupportedOperationException ex) {
162 } catch (UnsupportedOperationException ex) {
186 } catch (IllegalArgumentException ex) {
192 } catch (IllegalArgumentException ex) {
211 } catch (IllegalArgumentException ex) {
217 } catch (IllegalArgumentException ex) {
    [all...]
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 84 } catch (InterruptedException ex) {
85 System.err.println(ex.getMessage());
102 } catch (InterruptedException ex) {
103 System.err.println(ex.getMessage());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
put1.pass.cpp 51 std::string ex(str, iter.base());
52 assert(ex == "Today is Saturday which is abbreviated Sat.");
58 std::string ex(str, iter.base());
59 assert(ex == "The number of the month is 05.");
  /packages/apps/Calendar/src/com/android/calendar/
RecipientAdapter.java 19 import com.android.ex.chips.BaseRecipientAdapter;
  /packages/apps/Camera2/src/com/android/camera/
CameraTestDevice.java 21 import com.android.ex.camera2.portability.CameraAgent.CameraProxy;

Completed in 2362 milliseconds

<<11121314151617181920>>