Home
last modified time | relevance | path

Searched refs:system_category (Results 1 – 21 of 21) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
Dclear.pass.cpp23 ec.assign(6, std::system_category()); in main()
25 assert(ec.category() == std::system_category()); in main()
Dassign.pass.cpp23 ec.assign(6, std::system_category()); in main()
25 assert(ec.category() == std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
Dint_error_category.pass.cpp22 std::error_code ec(6, std::system_category()); in main()
24 assert(ec.category() == std::system_category()); in main()
Ddefault.pass.cpp23 assert(ec.category() == std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
Dint_error_category.pass.cpp22 std::error_condition ec(6, std::system_category()); in main()
24 assert(ec.category() == std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
Dsystem_category.pass.cpp22 const std::error_category& e_cat1 = std::system_category(); in main()
28 assert(e_cond.category() == std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
Dassign.pass.cpp23 ec.assign(6, std::system_category()); in main()
25 assert(ec.category() == std::system_category()); in main()
Dclear.pass.cpp28 assert(ec.category() == std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.compare/
Deq_error_code_error_code.pass.cpp27 std::error_code e_code2(5, std::system_category()); in main()
29 std::error_code e_code4(6, std::system_category()); in main()
31 std::error_condition e_condition2(5, std::system_category()); in main()
33 std::error_condition e_condition4(6, std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/src/
Dsystem_error.cpp111 return error_condition(ev, system_category()); in default_error_condition()
117 system_category() _NOEXCEPT in system_category() function
197 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
Dthread.cpp38 throw system_error(error_code(ec, system_category()), "thread::join failed"); in join()
55 throw system_error(error_code(ec, system_category()), "thread::detach failed"); in detach()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
Dvalue.pass.cpp21 const std::error_code ec(6, std::system_category()); in main()
Ddefault_error_condition.pass.cpp27 const std::error_code ec(6, std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
Dvalue.pass.cpp21 const std::error_condition ec(6, std::system_category()); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
Dneq.pass.cpp23 const std::error_category& e_cat3 = std::system_category(); in main()
Deq.pass.cpp23 const std::error_category& e_cat3 = std::system_category(); in main()
Dlt.pass.cpp23 const std::error_category& e_cat3 = std::system_category(); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.hash/
Derror_code.pass.cpp33 T ec(i, std::system_category()); in test()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.derived/
Dmessage.pass.cpp25 const std::error_category& e_cat2 = std::system_category(); in main()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dsystem_error40 const error_category& system_category() noexcept;
401 const error_category& system_category() _NOEXCEPT;
481 error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
515 __cat_ = &system_category();
Dthread148 throw system_error(error_code(__ec, system_category()),