/ndk/tests/device/test-stlport_shared-exception/jni/ |
ref9.cpp | 3 struct ex; 6 ex eval() const; 10 struct ex { struct 12 ex() : bp(0) { } function in struct:ex 13 ex(const basic &); 14 virtual ~ex(); 18 ex basic::eval() const { 22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex 23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; [all...] |
/ndk/tests/device/test-stlport_static-exception/jni/ |
ref9.cpp | 3 struct ex; 6 ex eval() const; 10 struct ex { struct 12 ex() : bp(0) { } function in struct:ex 13 ex(const basic &); 14 virtual ~ex(); 18 ex basic::eval() const { 22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex 23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3exception.c | 37 static void antlr3ExceptionPrint(pANTLR3_EXCEPTION ex); 38 static void antlr3ExceptionFree (pANTLR3_EXCEPTION ex); 74 pANTLR3_EXCEPTION ex; local 78 ex = (pANTLR3_EXCEPTION) ANTLR3_CALLOC(1, sizeof(ANTLR3_EXCEPTION)); 82 if (ex == NULL) 87 ex->name = name; /* Install exception name */ 88 ex->type = exception; /* Install the exception number */ 89 ex->message = message; /* Install message string */ 93 ex->freeMessage = freeMessage; 97 ex->print = antlr3ExceptionPrint [all...] |
/dalvik/dx/tests/080-dex-exception-tables/ |
Blort.java | 29 } catch (IndexOutOfBoundsException ex) { 31 } catch (RuntimeException ex) { 44 } catch (IndexOutOfBoundsException ex) { 48 } catch (RuntimeException ex) { 62 } catch (NullPointerException ex) { 66 } catch (IndexOutOfBoundsException ex) { 70 } catch (RuntimeException ex) { 84 } catch (NullPointerException ex) { 87 } catch (IndexOutOfBoundsException ex) { 91 } catch (RuntimeException ex) { [all...] |
/external/proguard/src/proguard/classfile/io/ |
RuntimeDataInput.java | 50 catch (IOException ex) 52 throw new RuntimeException(ex.getMessage()); 62 catch (IOException ex) 64 throw new RuntimeException(ex.getMessage()); 74 catch (IOException ex) 76 throw new RuntimeException(ex.getMessage()); 86 catch (IOException ex) 88 throw new RuntimeException(ex.getMessage()); 98 catch (IOException ex) 100 throw new RuntimeException(ex.getMessage()) [all...] |
RuntimeDataOutput.java | 50 catch (IOException ex) 52 throw new RuntimeException(ex.getMessage()); 63 catch (IOException ex) 65 throw new RuntimeException(ex.getMessage()); 76 catch (IOException ex) 78 throw new RuntimeException(ex.getMessage()); 89 catch (IOException ex) 91 throw new RuntimeException(ex.getMessage()); 102 catch (IOException ex) 104 throw new RuntimeException(ex.getMessage()) [all...] |
/dalvik/dx/tests/066-dex-try-catch-rethrow/ |
Blort.java | 26 } catch (Exception ex) { 27 throw new RuntimeException(ex); 38 } catch (Exception ex) { 39 throw new RuntimeException(ex); 50 } catch (Exception ex) { 51 throw new RuntimeException(ex); 62 } catch (Exception ex) { 63 throw new RuntimeException(ex); 74 } catch (Exception ex) { 75 throw new RuntimeException(ex); [all...] |
/external/chromium_org/third_party/skia/include/utils/win/ |
SkHRESULT.h | 43 #define HR(ex) HR_GENERAL(ex, NULL, _hr) 44 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr) 46 #define HRB(ex) HR_GENERAL(ex, NULL, false) 47 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false) 49 #define HRN(ex) HR_GENERAL(ex, NULL, NULL [all...] |
/external/skia/include/utils/win/ |
SkHRESULT.h | 43 #define HR(ex) HR_GENERAL(ex, NULL, _hr) 44 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr) 46 #define HRB(ex) HR_GENERAL(ex, NULL, false) 47 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false) 49 #define HRN(ex) HR_GENERAL(ex, NULL, NULL [all...] |
/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/nio/charset/ |
CoderMalfunctionError.java | 35 * @param ex 38 public CoderMalfunctionError(Exception ex) { 39 super(ex);
|
/libcore/luni/src/main/java/java/security/ |
PrivilegedActionException.java | 27 public PrivilegedActionException(Exception ex) { 28 super(ex);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/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...] |
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...] |
/dalvik/dx/tests/046-dex-exceptions/ |
Blort.java | 31 } catch (RuntimeException ex) { 40 } catch (RuntimeException ex) { 48 } catch (RuntimeException ex) { 54 } catch (RuntimeException ex) {
|
/external/chromium_org/third_party/webrtc/base/ |
gunit.h | 22 // Wait until "ex" is true, or "timeout" expires. 23 #define WAIT(ex, timeout) \ 25 !(ex) && rtc::Time() < start + timeout;) \ 31 #define WAIT_(ex, timeout, res) \ 34 res = (ex); \ 37 res = (ex); \ 42 #define EXPECT_TRUE_WAIT(ex, timeout) \ 45 WAIT_(ex, timeout, res); \ 46 if (!res) EXPECT_TRUE(ex); \ 56 #define ASSERT_TRUE_WAIT(ex, timeout) [all...] |
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/ |
bad_function_call_ctor.pass.cpp | 19 std::bad_function_call ex; local
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/ |
StateChangeListener.java | 17 package com.android.ex.camera2.utils;
|
/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;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/ |
bad_function_call_ctor.pass.cpp | 19 std::bad_function_call ex; local
|
/dalvik/dx/tests/067-dex-switch-and-try/ |
Blort.java | 36 } catch (RuntimeException ex) { 57 } catch (RuntimeException ex) { 73 } catch (RuntimeException ex) { 98 } catch (RuntimeException ex) { 108 } catch (RuntimeException ex) {
|
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/ |
Exception.pm | 11 my $ex = $self->class->new(); 12 is $ex->message, ''; 17 my $ex = $self->class->new({ message => 'test error message' }); 18 is $ex->message, 'test error message'; 26 my $ex = $self->class->caught(); 27 is $ex->message, 'test error message';
|
/art/test/201-built-in-exception-detail-messages/src/ |
Main.java | 58 } catch (ArrayIndexOutOfBoundsException ex) { 59 assertEquals("length=1; index=2", ex.getMessage()); 66 } catch (ArrayIndexOutOfBoundsException ex) { 67 assertEquals("length=1; index=2", ex.getMessage()); 74 } catch (ArrayIndexOutOfBoundsException ex) { 75 assertEquals("length=1; index=2", ex.getMessage()); 82 } catch (ArrayIndexOutOfBoundsException ex) { 83 assertEquals("length=1; index=2", ex.getMessage()); 90 } catch (ArrayIndexOutOfBoundsException ex) { 91 assertEquals("length=1; index=2", ex.getMessage()) [all...] |