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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/080-dex-exception-tables/
Blort.class 
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/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/tensorflow/tensorflow/tools/ci_build/linux/
libtensorflow_cpu.sh 19 set -ex
libtensorflow_gpu.sh 19 set -ex
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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<> &>;
  /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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/meta/meta.logical/
negation.pass.cpp 20 namespace ex = std::experimental;
27 static_assert (!ex::negation<std::true_type >::value, "" );
28 static_assert ( ex::negation<std::false_type>::value, "" );
30 static_assert (!ex::negation_v<std::true_type >, "" );
31 static_assert ( ex::negation_v<std::false_type>, "" );
33 static_assert (!ex::negation<True >::value, "" );
34 static_assert ( ex::negation<False>::value, "" );
36 static_assert (!ex::negation_v<True >, "" );
37 static_assert ( ex::negation_v<False>, "" );
39 static_assert ( ex::negation<ex::negation<std::true_type >>::value, "" )
    [all...]
  /external/skia/src/utils/win/
SkHRESULT.h 46 #define HR(ex) HR_GENERAL(ex, nullptr, _hr)
47 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr)
49 #define HRB(ex) HR_GENERAL(ex, nullptr, false)
50 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false)
52 #define HRN(ex) HR_GENERAL(ex, nullptr, nullptr
    [all...]
  /external/skqp/src/utils/win/
SkHRESULT.h 46 #define HR(ex) HR_GENERAL(ex, nullptr, _hr)
47 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr)
49 #define HRB(ex) HR_GENERAL(ex, nullptr, false)
50 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false)
52 #define HRN(ex) HR_GENERAL(ex, nullptr, nullptr
    [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/libcxx/test/std/experimental/memory/memory.resource/memory.resource.priv/
protected_members.fail.cpp 20 namespace ex = std::experimental::pmr;
23 ex::memory_resource *m = ex::new_delete_resource();
  /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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.priv/
protected_members.fail.cpp 20 namespace ex = std::experimental::pmr;
23 ex::memory_resource *m = ex::new_delete_resource();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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> ==
  /external/libcxx/test/std/experimental/memory/memory.resource/
construct.fail.cpp 20 namespace ex = std::experimental::pmr;
24 ex::memory_resource m; // expected-error {{variable type 'ex::memory_resource' is an abstract class}}
  /external/libcxx/test/std/experimental/memory/memory.resource.global/
new_delete_resource.pass.cpp 23 namespace ex = std::experimental::pmr;
25 struct assert_on_compare : public ex::memory_resource
34 virtual bool do_is_equal(ex::memory_resource const &) const noexcept
42 decltype(ex::new_delete_resource()), ex::memory_resource*
47 assert(ex::new_delete_resource());
51 assert(ex::new_delete_resource() == ex::new_delete_resource());
59 ex::memory_resource & r1 = *ex::new_delete_resource()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/
construct.fail.cpp 20 namespace ex = std::experimental::pmr;
24 ex::memory_resource m; // expected-error {{variable type 'ex::memory_resource' is an abstract class}}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.global/
new_delete_resource.pass.cpp 23 namespace ex = std::experimental::pmr;
25 struct assert_on_compare : public ex::memory_resource
34 virtual bool do_is_equal(ex::memory_resource const &) const noexcept
42 decltype(ex::new_delete_resource()), ex::memory_resource*
47 assert(ex::new_delete_resource());
51 assert(ex::new_delete_resource() == ex::new_delete_resource());
59 ex::memory_resource & r1 = *ex::new_delete_resource()
    [all...]

Completed in 255 milliseconds

1 2 3 4 5 6 7 8 91011>>