/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/ |
default_error_condition.pass.cpp | 22 const std::error_code ec(6, std::generic_category()); 23 std::error_condition e_cond = ec.default_error_condition(); 24 assert(e_cond == ec); 27 const std::error_code ec(6, std::system_category()); 28 std::error_condition e_cond = ec.default_error_condition(); 29 assert(e_cond == ec);
|
category.pass.cpp | 21 const std::error_code ec(6, std::generic_category()); 22 assert(ec.category() == std::generic_category());
|
value.pass.cpp | 21 const std::error_code ec(6, std::system_category()); 22 assert(ec.value() == 6);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/ |
int_error_category.pass.cpp | 22 std::error_condition ec(6, std::system_category()); 23 assert(ec.value() == 6); 24 assert(ec.category() == std::system_category()); 27 std::error_condition ec(8, std::generic_category()); 28 assert(ec.value() == 8); 29 assert(ec.category() == std::generic_category());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.device/ |
ctor.pass.cpp | 34 int ec; local 35 ec = close(STDIN_FILENO); 36 assert(!ec); 37 ec = close(STDOUT_FILENO); 38 assert(!ec); 39 ec = close(STDERR_FILENO); 40 assert(!ec);
|
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/ |
EventIdsTest.java | 33 EventCounter ec = new EventCounter(); local 34 observableInLibrary.addOnPropertyChangedCallback(ec); 35 ec.assertProperty(BR.libField1, 0); 36 ec.assertProperty(BR.libField2, 0); 37 ec.assertProperty(BR.sharedField, 0); 40 ec.assertProperty(BR.libField1, 1); 41 ec.assertProperty(BR.libField2, 0); 42 ec.assertProperty(BR.sharedField, 0); 45 ec.assertProperty(BR.libField1, 1); 46 ec.assertProperty(BR.libField2, 1) 57 EventCounter ec = new EventCounter(); local 81 EventCounter ec = new EventCounter(); local [all...] |
/external/libcxx/test/std/thread/futures/futures.future_error/ |
code.pass.cpp | 24 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); local 25 std::future_error f(ec); 26 assert(f.code() == ec); 29 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); local 30 std::future_error f(ec); 31 assert(f.code() == ec); 34 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); local 35 std::future_error f(ec); 36 assert(f.code() == ec); 39 std::error_code ec = std::make_error_code(std::future_errc::no_state) local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/ |
code.pass.cpp | 22 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); local 23 std::future_error f(ec); 24 assert(f.code() == ec); 27 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); local 28 std::future_error f(ec); 29 assert(f.code() == ec); 32 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); local 33 std::future_error f(ec); 34 assert(f.code() == ec); 37 std::error_code ec = std::make_error_code(std::future_errc::no_state) local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/ |
ECEndomorphism.java | 1 package org.bouncycastle.math.ec.endo; 3 import org.bouncycastle.math.ec.ECPointMap;
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/ |
category.pass.cpp | 21 const std::error_code ec(6, std::generic_category()); 22 assert(ec.category() == std::generic_category());
|
value.pass.cpp | 21 const std::error_code ec(6, std::system_category()); 22 assert(ec.value() == 6);
|
message.pass.cpp | 22 const std::error_code ec(6, std::generic_category()); 23 assert(ec.message() == std::generic_category().message(6));
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/ |
category.pass.cpp | 21 const std::error_condition ec(6, std::generic_category()); 22 assert(ec.category() == std::generic_category());
|
value.pass.cpp | 21 const std::error_condition ec(6, std::system_category()); 22 assert(ec.value() == 6);
|
message.pass.cpp | 22 const std::error_condition ec(6, std::generic_category()); 23 assert(ec.message() == std::generic_category().message(6));
|
/external/libcxx/test/std/thread/futures/futures.errors/ |
future_category.pass.cpp | 22 const std::error_category& ec = std::future_category(); local 23 assert(std::strcmp(ec.name(), "future") == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/ |
category.pass.cpp | 21 const std::error_condition ec(6, std::generic_category()); 22 assert(ec.category() == std::generic_category());
|
value.pass.cpp | 21 const std::error_condition ec(6, std::system_category()); 22 assert(ec.value() == 6);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.errors/ |
future_category.pass.cpp | 20 const std::error_category& ec = std::future_category(); local 21 assert(std::strcmp(ec.name(), "future") == 0);
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/ |
ErrorConditionEnum.pass.cpp | 22 std::error_condition ec; local 23 ec = std::errc::not_enough_memory; 24 assert(ec.value() == static_cast<int>(std::errc::not_enough_memory)); 25 assert(ec.category() == std::generic_category());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/ |
ErrorConditionEnum.pass.cpp | 22 std::error_condition ec; local 23 ec = std::errc::not_enough_memory; 24 assert(ec.value() == static_cast<int>(std::errc::not_enough_memory)); 25 assert(ec.category() == std::generic_category());
|
/external/clang/test/CXX/expr/expr.post/expr.static.cast/ |
p9-0x.cpp | 4 enum class EC { ec1 }; 6 void test0(EC ec) { 7 (void)static_cast<bool>(ec); 8 (void)static_cast<bool>(EC::ec1); 9 (void)static_cast<char>(ec); 10 (void)static_cast<char>(EC::ec1); 11 (void)static_cast<int>(ec); 12 (void)static_cast<int>(EC::ec1); 13 (void)static_cast<unsigned long>(ec); [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/ |
basic_socket.hpp | 86 asio::error_code ec; local 87 this->get_service().open(this->get_implementation(), protocol, ec); 88 asio::detail::throw_error(ec, "open"); 110 asio::error_code ec; local 112 this->get_service().open(this->get_implementation(), protocol, ec); 113 asio::detail::throw_error(ec, "open"); 114 this->get_service().bind(this->get_implementation(), endpoint, ec); 115 asio::detail::throw_error(ec, "bind"); 135 asio::error_code ec; local 137 protocol, native_socket, ec); 263 asio::error_code ec; local 306 asio::error_code ec; local 349 asio::error_code ec; local 441 asio::error_code ec; local 497 asio::error_code ec; local 530 asio::error_code ec; local 572 asio::error_code ec; local 631 asio::error_code ec; local 739 asio::error_code ec; local 798 asio::error_code ec; local 888 asio::error_code ec; local 966 asio::error_code ec; local 1037 asio::error_code ec; local 1238 asio::error_code ec; local 1353 asio::error_code ec; local 1403 asio::error_code ec; local 1455 asio::error_code ec; local [all...] |
/external/icu/icu4c/source/i18n/ |
curramt.cpp | 21 UErrorCode& ec) : 22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) { 26 UErrorCode& ec) : 27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/s390/ |
zarch-z10.d | 16 .*: ec 67 84 57 a0 f6 [ ]*crbnl %r6,%r7,1111\(%r8\) 17 .*: ec 67 84 57 20 f6 [ ]*crbh %r6,%r7,1111\(%r8\) 18 .*: ec 67 84 57 20 f6 [ ]*crbh %r6,%r7,1111\(%r8\) 19 .*: ec 67 84 57 40 f6 [ ]*crbl %r6,%r7,1111\(%r8\) 20 .*: ec 67 84 57 40 f6 [ ]*crbl %r6,%r7,1111\(%r8\) 21 .*: ec 67 84 57 60 f6 [ ]*crbne %r6,%r7,1111\(%r8\) 22 .*: ec 67 84 57 60 f6 [ ]*crbne %r6,%r7,1111\(%r8\) 23 .*: ec 67 84 57 80 f6 [ ]*crbe %r6,%r7,1111\(%r8\) 24 .*: ec 67 84 57 80 f6 [ ]*crbe %r6,%r7,1111\(%r8\) 25 .*: ec 67 84 57 a0 f6 [ ]*crbnl %r6,%r7,1111\(%r8\ [all...] |