/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/acl/ |
AclNotFoundExceptionTest.java | 39 AclNotFoundException ex = new AclNotFoundException(); local 40 assertNull(ex.getMessage()); 41 assertNull(ex.getCause());
|
LastOwnerExceptionTest.java | 35 LastOwnerException ex = new LastOwnerException(); local 36 assertNull(ex.getMessage()); 37 assertNull(ex.getCause());
|
NotOwnerExceptionTest.java | 35 NotOwnerException ex = new NotOwnerException(); local 36 assertNull(ex.getMessage()); 37 assertNull(ex.getCause());
|
/external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/ |
IllegalCharsetNameExceptionTest.java | 33 IllegalCharsetNameException ex = new IllegalCharsetNameException( local 35 assertTrue(ex instanceof IllegalArgumentException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getCharsetName(), "impossible"); 38 assertTrue(ex.getMessage().indexOf("impossible") != -1); 40 ex = new IllegalCharsetNameException("ascii"); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getCharsetName(), "ascii"); 43 assertTrue(ex.getMessage().indexOf("ascii") != -1); 45 ex = new IllegalCharsetNameException("") [all...] |
UnsupportedCharsetExceptionTest.java | 33 UnsupportedCharsetException ex = new UnsupportedCharsetException( local 35 assertTrue(ex instanceof IllegalArgumentException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getCharsetName(), "impossible"); 38 assertTrue(ex.getMessage().indexOf("impossible") != -1); 40 ex = new UnsupportedCharsetException("ascii"); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getCharsetName(), "ascii"); 43 assertTrue(ex.getMessage().indexOf("ascii") != -1); 45 ex = new UnsupportedCharsetException("") [all...] |
CharacterCodingExceptionTest.java | 32 CharacterCodingException ex = new CharacterCodingException(); local 33 assertTrue(ex instanceof IOException); 34 assertNull(ex.getCause()); 35 assertNull(ex.getMessage());
|
MalformedInputExceptionTest.java | 34 MalformedInputException ex = new MalformedInputException(3); local 35 assertTrue(ex instanceof CharacterCodingException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getInputLength(), 3); 38 assertTrue(ex.getMessage().indexOf("3") != -1); 40 ex = new MalformedInputException(-3); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getInputLength(), -3); 43 assertTrue(ex.getMessage().indexOf("-3") != -1); 45 ex = new MalformedInputException(0) [all...] |
UnmappableCharacterExceptionTest.java | 34 UnmappableCharacterException ex = new UnmappableCharacterException(3); local 35 assertTrue(ex instanceof CharacterCodingException); 36 assertNull(ex.getCause()); 37 assertEquals(ex.getInputLength(), 3); 38 assertTrue(ex.getMessage().indexOf("3") != -1); 40 ex = new UnmappableCharacterException(-3); 41 assertNull(ex.getCause()); 42 assertEquals(ex.getInputLength(), -3); 43 assertTrue(ex.getMessage().indexOf("-3") != -1); 45 ex = new UnmappableCharacterException(0) [all...] |
/frameworks/ex/chips/src/com/android/ex/chips/ |
AccountSpecifier.java | 17 package com.android.ex.chips;
|
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
DynamicProxy.java | 17 package com.android.ex.variablespeed;
|
RealMediaPlayerTest.java | 17 package com.android.ex.variablespeed;
|
/libcore/luni/src/main/java/javax/sql/ |
ConnectionEvent.java | 33 private SQLException ex; field in class:ConnectionEvent 61 ex = theException; 72 return ex;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
AccessControlExceptionTest.java | 57 AccessControlException ex = new AccessControlException("001", perm); local 58 assertSame(ex.getPermission(), perm);
|
PrivilegedActionExceptionTest.java | 38 Exception ex = new Exception(); local 39 new PrivilegedActionException(ex); 47 Exception ex = new Exception(); local 48 assertSame(new PrivilegedActionException(ex).getException(), ex);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
UndefinedAssignmentChecker.cpp | 52 const Expr *ex = 0; local 61 ex = B->getLHS(); 66 ex = B->getRHS(); 72 ex = VD->getInit(); 79 if (ex) { 80 R->addRange(ex->getSourceRange()); 81 R->addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, ex));
|
/external/nist-sip/java/gov/nist/core/ |
InternalErrorHandler.java | 42 public static void handleException(Exception ex) throws RuntimeException { 43 System.err.println ("Unexpected internal error FIXME!! " + ex.getMessage()); 44 ex.printStackTrace(); 45 throw new RuntimeException("Unexpected internal error FIXME!! " + ex.getMessage(), ex); 51 public static void handleException(Exception ex, StackLogger stackLogger) { 52 System.err.println ("Unexpected internal error FIXME!! " + ex.getMessage()); 53 stackLogger.logError("UNEXPECTED INTERNAL ERROR FIXME " + ex.getMessage()); 54 ex.printStackTrace(); 55 stackLogger.logException(ex); [all...] |
/libcore/luni/src/main/java/java/lang/ |
ClassNotFoundException.java | 27 private Throwable ex; field in class:ClassNotFoundException 60 ex = exception; 69 return ex; 80 return ex;
|
/libcore/dom/src/test/java/org/w3c/domts/ |
JUnitTestSuiteAdapter.java | 43 } catch(InvocationTargetException ex) { 44 throw ex.getTargetException(); 58 catch(Throwable ex) { 59 if(!(ex instanceof DOMTestIncompatibleException)) { 60 ex.printStackTrace();
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldJarExceptionTest.java | 28 JarException ex = new JarException(); local 31 assertNotSame(ex, ex1); 32 assertNotSame(ex.getMessage(), ex1.getMessage()); 33 assertNotSame(ex, ex2); 34 assertSame(ex.getMessage(), ex2.getMessage());
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRedirectHandler.java | 115 } catch (URISyntaxException ex) { 116 throw new ProtocolException("Invalid redirect URI: " + location, ex); 142 } catch (URISyntaxException ex) { 143 throw new ProtocolException(ex.getMessage(), ex); local 165 } catch (URISyntaxException ex) { 166 throw new ProtocolException(ex.getMessage(), ex); local
|
/bionic/libm/amd64/ |
fenv.c | 65 fexcept_t ex = excepts; local 67 fesetexceptflag(&ex, excepts);
|
/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());
|
/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/apache-http/src/org/apache/http/client/utils/ |
CloneUtils.java | 49 } catch (NoSuchMethodException ex) { 50 throw new NoSuchMethodError(ex.getMessage()); 54 } catch (InvocationTargetException ex) { 55 Throwable cause = ex.getCause(); 61 } catch (IllegalAccessException ex) { 62 throw new IllegalAccessError(ex.getMessage());
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ContentLanguageParser.java | 96 } catch (ParseException ex) { 97 throw createParseException(ex.getMessage());
|