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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/libcxx/test/std/experimental/utilities/tuple/
tuple_size_v_2.fail.cpp 20 namespace ex = std::experimental;
24 auto x = ex::tuple_size_v<int>;
tuple_size_v.fail.cpp 20 namespace ex = std::experimental;
24 auto x = ex::tuple_size_v<std::tuple<> &>;
tuple_size_v_3.fail.cpp 20 namespace ex = std::experimental;
24 auto x = ex::tuple_size_v<std::tuple<>*>;
  /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/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/lang/
ClassNotFoundException.java 35 /** This field holds the exception ex if the ClassNotFoundException(String s, Throwable ex) constructor was used to instantiate
39 private Throwable ex; field in class:ClassNotFoundException
57 * @param ex the exception that was raised while loading the class
59 public ClassNotFoundException (String s, Throwable ex) {
61 this.ex = ex;
74 return ex;
83 return ex;
  /libcore/ojluni/src/main/java/java/lang/
ClassNotFoundException.java 60 * This field holds the exception ex if the
61 * ClassNotFoundException(String s, Throwable ex) constructor was
66 private Throwable ex; field in class:ClassNotFoundException
91 * @param ex the exception that was raised while loading the class
94 public ClassNotFoundException(String s, Throwable ex) {
96 this.ex = ex;
111 return ex;
123 return ex;
  /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/skia/include/utils/win/
SkHRESULT.h 44 #define HR(ex) HR_GENERAL(ex, NULL, _hr)
45 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr)
47 #define HRB(ex) HR_GENERAL(ex, NULL, false)
48 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false)
50 #define HRN(ex) HR_GENERAL(ex, NULL, NULL
    [all...]
  /libcore/ojluni/src/main/java/javax/sql/
ConnectionEvent.java 65 * @param ex the SQLException about to be thrown to the application
68 public ConnectionEvent(PooledConnection con, SQLException ex) {
70 this.ex = ex;
79 public SQLException getSQLException() { return ex; }
87 private SQLException ex = null; field in class:ConnectionEvent
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
IExceptionLogger.java 24 public void logExeption(final Exception ex) {
25 ex.printStackTrace();
32 * @param ex
35 public void logExeption(Exception 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...]
  /external/libcxx/test/std/experimental/utilities/syserror/header.system_error.synop/
is_error_code_enum_v.pass.cpp 19 namespace ex = std::experimental;
23 static_assert(ex::is_error_code_enum_v<std::io_errc>, "");
25 static_assert(ex::is_error_code_enum_v<std::io_errc> ==
28 static_assert(std::is_same<decltype(ex::is_error_code_enum_v<std::io_errc>),
32 static_assert(!ex::is_error_code_enum_v<int>, "");
34 static_assert(ex::is_error_code_enum_v<int> ==
is_error_condition_enum.pass.cpp 18 namespace ex = std::experimental;
22 static_assert(ex::is_error_condition_enum_v<std::errc>, "");
24 static_assert(ex::is_error_condition_enum_v<std::errc> ==
28 std::is_same<decltype(ex::is_error_condition_enum_v<std::errc>),
33 static_assert(!ex::is_error_condition_enum_v<int>, "");
35 static_assert(ex::is_error_condition_enum_v<int> ==
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/
misc.s 4 ex af,af'
6 ex de,hl
7 ex (sp),hl
8 ex (sp),ix
9 ex (sp),iy
  /external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
meta.unary.cat.pass.cpp 16 namespace ex = std::experimental;
26 static_assert(ex::is_void_v<T>, "");
27 static_assert(std::is_same<decltype(ex::is_void_v<T>), const bool>::value, "");
28 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
32 static_assert(!ex::is_void_v<T>, "");
33 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
37 static_assert(ex::is_null_pointer_v<T>, "");
38 static_assert(std::is_same<decltype(ex::is_null_pointer_v<T>), const bool>::value, "");
39 static_assert(ex::is_null_pointer_v<T> == std::is_null_pointer<T>::value, "");
43 static_assert(!ex::is_null_pointer_v<T>, "")
    [all...]
  /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...]
  /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/libcxx/test/std/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
  /external/webrtc/webrtc/base/
gunit.h 22 // Wait until "ex" is true, or "timeout" expires.
23 #define WAIT(ex, timeout) \
24 for (uint32_t start = rtc::Time(); !(ex) && rtc::Time() < start + timeout;) \
30 #define WAIT_(ex, timeout, res) \
33 res = (ex); \
36 res = (ex); \
41 #define EXPECT_TRUE_WAIT(ex, timeout) \
44 WAIT_(ex, timeout, res); \
45 if (!res) EXPECT_TRUE(ex); \
55 #define ASSERT_TRUE_WAIT(ex, timeout)
    [all...]

Completed in 9536 milliseconds

1 2 3 4 5 6 7 8 91011>>