Searched refs:ec1 (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/CXX/expr/expr.post/expr.static.cast/
H A Dp9-0x.cpp4 enum class EC { ec1 };
8 (void)static_cast<bool>(EC::ec1);
10 (void)static_cast<char>(EC::ec1);
12 (void)static_cast<int>(EC::ec1);
14 (void)static_cast<unsigned long>(EC::ec1);
16 (void)static_cast<float>(EC::ec1);
18 (void)static_cast<double>(EC::ec1);
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
H A Dlt.pass.cpp23 const std::error_code ec1(6, std::generic_category());
25 assert(ec1 < ec2);
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/
H A Dlt.pass.cpp23 const std::error_condition ec1(6, std::generic_category());
25 assert(ec1 < ec2);
H A Dmake_error_condition.pass.cpp22 const std::error_condition ec1 = std::make_error_condition(std::errc::message_size); local
23 assert(ec1.value() == static_cast<int>(std::errc::message_size));
24 assert(ec1.category() == std::generic_category());
/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/error.reporting/
H A Dmake_error_condition.pass.cpp20 const std::error_condition ec1 = std::make_error_condition(std::io_errc::stream); local
21 assert(ec1.value() == static_cast<int>(std::io_errc::stream));
22 assert(ec1.category() == std::iostream_category());
/external/libcxx/test/std/thread/futures/futures.errors/
H A Dmake_error_condition.pass.cpp24 const std::error_condition ec1 = local
26 assert(ec1.value() ==
28 assert(ec1.category() == std::future_category());
/external/clang/test/Sema/
H A Dbitfield-promote.c16 enum E { ec1, ec2, ec3 }; enumerator in enum:E
/external/valgrind/helgrind/
H A Dlibhb_core.c4274 static Word RCEC__cmp_by_frames ( RCEC* ec1, RCEC* ec2 ) { argument
4276 tl_assert(ec1 && ec1->magic == RCEC_MAGIC);
4278 if (ec1->frames_hash < ec2->frames_hash) return -1;
4279 if (ec1->frames_hash > ec2->frames_hash) return 1;
4281 if (ec1->frames[i] < ec2->frames[i]) return -1;
4282 if (ec1->frames[i] > ec2->frames[i]) return 1;
4313 RCEC *ec0, *ec1, *ec2; local
4318 ec1 = NULL;
4322 ec2 = ec1;
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DEncryptedPrivateKeyInfoTest.java1016 byte[] ec1 = epki.getEncoded();
1019 assertNotSame(ec1, ec2);
1021 assertNotSame(ec1, ec3);
/external/icu/icu4c/source/i18n/
H A Ducurr.cpp1552 UErrorCode ec1 = U_ZERO_ERROR; local
1553 textLen = u_strToUpper(upperText, MAX_CURRENCY_NAME_LEN, inputText, textLen, locale, &ec1);

Completed in 1871 milliseconds