HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 226 - 250 of 1224) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 45 } catch (NullPointerException ex) {
AttInnerClasses.java 43 } catch (NullPointerException ex) {
AttLineNumberTable.java 44 } catch (NullPointerException ex) {
BaseLocalVariables.java 44 } catch (NullPointerException ex) {
  /external/proguard/src/proguard/gui/
SwingUtil.java 57 catch (Exception ex)
  /external/proguard/src/proguard/optimize/peephole/
UnreachableCodeRemover.java 92 catch (RuntimeException ex)
97 System.err.println(" Exception = ["+ex.getClass().getName()+"] ("+ex.getMessage()+")");
99 throw ex;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederr.java 102 } catch (DOMException ex) {
103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
112 } catch (DOMException ex) {
113 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
hc_attrinsertbefore7.java 88 } catch (DOMException ex) {
89 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
103 } catch (DOMException ex) {
104 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
hc_entitiessetnameditem1.java 82 } catch (DOMException ex) {
83 switch (ex.code) {
89 throw ex;
hc_notationssetnameditem1.java 82 } catch (DOMException ex) {
83 switch (ex.code) {
89 throw ex;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapsetnameditemns05.java 94 } catch (DOMException ex) {
95 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
104 } catch (DOMException ex) {
105 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
  /libcore/luni/src/main/java/java/io/
Console.java 48 } catch (IOException ex) {
49 throw new AssertionError(ex);
149 } catch (IOException ex) {
150 throw new IOError(ex);
  /libcore/luni/src/main/java/java/lang/
ClassCache.java 104 } catch (NoSuchFieldException ex) {
106 throw new AssertionError(ex);
111 } catch (IllegalAccessException ex) {
113 throw new AssertionError(ex);
571 } catch (NoSuchMethodException ex) {
573 throw new UnsupportedOperationException(ex);
578 } catch (IllegalAccessException ex) {
580 throw new Error(ex);
581 } catch (InvocationTargetException ex) {
582 Throwable te = ex.getTargetException()
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsEditEN.java 59 } catch (Exception ex) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsEditJAJP.java 59 } catch (Exception ex) {
  /cts/tests/tests/app/src/android/app/cts/
PendingIntent_CanceledExceptionTest.java 63 Exception ex = new Exception(); local
64 canceledException = new PendingIntent.CanceledException(ex);
68 assertSame(ex, e.getCause());
  /dalvik/tests/064-field-access/src/
Main.java 95 } catch (Exception ex) {
98 + ex.getClass());
99 ex.printStackTrace();
101 if (!expectedException.equals(ex.getClass())) {
104 + ex.getClass());
105 ex.printStackTrace();
327 } catch (Exception ex) {
330 + ex.getClass());
331 ex.printStackTrace();
333 if (!expectedException.equals(ex.getClass()))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
MinSEParser.java 51 } catch (NumberFormatException ex) {
53 } catch (InvalidArgumentException ex) {
54 throw createParseException(ex.getMessage());
SessionExpiresParser.java 48 } catch (NumberFormatException ex) {
50 } catch (InvalidArgumentException ex) {
51 throw createParseException(ex.getMessage());
  /frameworks/base/core/java/android/app/
KeyguardManager.java 64 } catch (RemoteException ex) {
82 } catch (RemoteException ex) {
131 } catch (RemoteException ex) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CharacterDataImpl.java 73 } catch (ArrayIndexOutOfBoundsException ex) {
82 } catch (ArrayIndexOutOfBoundsException ex) {
94 } catch (ArrayIndexOutOfBoundsException ex) {
  /libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CoderMalfunctionErrorTest.java 46 Exception ex = new Exception(); local
47 CoderMalfunctionError e = new CoderMalfunctionError(ex);
48 assertSame(ex, e.getCause());
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionException2Test.java 80 Exception ex = new Exception("Test message", tCause); local
81 PrivilegedActionException pe = new PrivilegedActionException(ex);
85 if (!res.equals(ex)) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNotationsRemoveNamedItemNS.java 97 } catch (DOMException ex) {
98 switch (ex.code) {
104 throw ex;
HCNotationsSetNamedItemNS.java 99 } catch (DOMException ex) {
100 switch (ex.code) {
106 throw ex;

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>