Searched refs:ex (Results 1 - 25 of 1167) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3exception.c37 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
118 antlr3ExceptionPrint(pANTLR3_EXCEPTION ex) argument
154 antlr3ExceptionFree(pANTLR3_EXCEPTION ex) argument
[all...]
/external/tensorflow/tensorflow/tools/ci_build/linux/
H A Dlibtensorflow_cpu.sh19 set -ex
H A Dlibtensorflow_gpu.sh19 set -ex
H A Dlibtensorflow.sh20 set -ex
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java50 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
[all...]
H A DRuntimeDataOutput.java50 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
[all...]
/external/skia/src/utils/win/
H A DSkHRESULT.h46 #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, nullpt
[all...]
/external/skqp/src/utils/win/
H A DSkHRESULT.h46 #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, nullpt
[all...]
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DIExceptionLogger.java24 public void logExeption(final Exception ex) {
25 ex.printStackTrace();
32 * @param ex
35 public void logExeption(Exception ex); argument
/external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.priv/
H A Dprotected_members.fail.cpp20 namespace ex = std::experimental::pmr;
23 ex::memory_resource *m = ex::new_delete_resource();
/external/nist-sip/java/gov/nist/core/
H A DInternalErrorHandler.java42 public static void handleException(Exception ex) throws RuntimeException { argument
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) { argument
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/memory/memory.resource/
H A Dconstruct.fail.cpp20 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/
H A Dnew_delete_resource.pass.cpp23 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
[all...]
H A Dnull_memory_resource.pass.cpp25 namespace ex = std::experimental::pmr;
27 struct assert_on_compare : public ex::memory_resource
36 virtual bool do_is_equal(ex::memory_resource const &) const noexcept
44 decltype(ex::null_memory_resource()), ex::memory_resource*
49 assert(ex::null_memory_resource());
53 assert(ex::null_memory_resource() == ex::null_memory_resource());
61 ex::memory_resource & r1 = *ex
[all...]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/
H A Dbad_function_call_ctor.pass.cpp19 std::bad_function_call ex; local
/external/libcxx/test/std/utilities/optional/optional.bad_optional_access/
H A Ddefault.pass.cpp29 bad_optional_access ex;
/external/webrtc/webrtc/base/
H A Dgunit.h22 // 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, timeou
[all...]
/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
H A Dresource.pass.cpp24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
32 std::is_same<decltype(a.resource()), ex::memory_resource*>::value
37 ex::memory_resource * mptr = (ex::memory_resource*)42;
48 assert(a.resource() == ex::get_default_resource());
51 ex::memory_resource * mptr = (ex::memory_resource*)42;
52 ex::set_default_resource(mptr);
55 assert(a.resource() == ex
[all...]
H A Dselect_on_container_copy_construction.pass.cpp24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
36 ex::memory_resource * mptr = (ex::memory_resource*)42;
40 assert(other.resource() == ex::get_default_resource());
44 ex::memory_resource * mptr = (ex::memory_resource*)42;
45 ex::set_default_resource(mptr);
49 assert(other.resource() == ex::get_default_resource());
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
H A Dput2.pass.cpp49 std::string ex(str, iter.base());
50 assert(ex == "Saturday");
54 std::string ex(str, iter.base());
55 assert(ex == "Sat");
59 std::string ex(str, iter.base());
60 assert(ex == "May");
64 std::string ex(str, iter.base());
65 assert(ex == "May");
69 std::string ex(str, iter.base());
70 assert(ex
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm11 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';
/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/
H A Ddefault.pass.cpp25 namespace ex = std::experimental::pmr;
31 std::is_nothrow_default_constructible<ex::polymorphic_allocator<void>>::value
38 ex::set_default_resource(&R1);
40 typedef ex::polymorphic_allocator<void> A;
44 ex::set_default_resource(nullptr);
47 assert(a2.resource() == ex::new_delete_resource());
H A Dmemory_resource_convert.pass.cpp24 namespace ex = std::experimental::pmr;
29 typedef ex::polymorphic_allocator<void> A;
35 std::is_convertible<ex::memory_resource *, A>::value
40 typedef ex::polymorphic_allocator<void> A;
/external/annotation-tools/asmx/src/org/objectweb/asm/xml/
H A DSAXAdapter.java55 } catch (SAXException ex) {
56 throw new RuntimeException(ex.toString());
63 } catch (SAXException ex) {
64 throw new RuntimeException(ex.toString());
76 } catch (SAXException ex) {
77 throw new RuntimeException(ex.getException());
84 } catch (SAXException ex) {
85 // ex.getException().printStackTrace();
86 // ex.printStackTrace();
87 throw new RuntimeException(ex
[all...]
/external/python/cpython3/Lib/test/test_asyncio/
H A Decho3.py10 except OSError as ex:
11 os.write(2, b'ERR:' + ex.__class__.__name__.encode('ascii'))

Completed in 408 milliseconds

1234567891011>>