/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | system_error.cpp | 28 error_category::default_error_condition(int ev) const _NOEXCEPT in default_error_condition() 30 return error_condition(ev, *this); in default_error_condition() 46 __do_message::message(int ev) const in message() 48 return string(strerror(ev)); in message() 56 virtual string message(int ev) const; 66 __generic_error_category::message(int ev) const in message() 69 if (ev > ELAST) in message() 72 if (ev > 4095) in message() 75 return __do_message::message(ev); in message() 90 virtual string message(int ev) const; [all …]
|
D | ios.cpp | 44 virtual string message(int ev) const; 54 __iostream_category::message(int ev) const in message() 56 if (ev != static_cast<int>(io_errc::stream) in message() 58 && ev <= ELAST in message() 60 && ev <= 4095 in message() 63 return __do_message::message(ev); in message() 124 ios_base::__call_callbacks(event ev) in __call_callbacks() argument 129 __fn_[i](ev, *this, __index_[i]); in __call_callbacks()
|
D | future.cpp | 22 virtual string message(int ev) const; 40 __future_error_category::message(int ev) const in message() 42 switch (static_cast<future_errc>(ev)) in message()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/ |
D | variable.hpp | 146 operator==( variable<T> ev, V const& v ) in operator ==() argument 148 return ev.has_value() && ev.value() == v; in operator ==() 155 operator==( V const& v, variable<T> ev ) in operator ==() argument 157 return ev.has_value() && ev.value() == v; in operator ==() 164 operator!=( variable<T> ev, V const& v ) in operator !=() argument 166 return !ev.has_value() || ev.value() != v; in operator !=() 173 operator!=( V const& v, variable<T> ev ) in operator !=() argument 175 return !ev.has_value() || ev.value() != v; in operator !=()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.cons/ |
D | dtor.pass.cpp | 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 37 if (ev == std::ios_base::erase_event) in f1() 48 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 50 if (ev == std::ios_base::erase_event) in f2() 61 void f3(std::ios_base::event ev, std::ios_base& stream, int index) in f3() argument 63 if (ev == std::ios_base::erase_event) in f3()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/ |
D | imbue.pass.cpp | 37 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 39 if (ev == std::ios_base::imbue_event) in f1() 50 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 52 if (ev == std::ios_base::imbue_event) in f2() 63 void f3(std::ios_base::event ev, std::ios_base& stream, int index) in f3() argument 65 if (ev == std::ios_base::imbue_event) in f3()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/ |
D | imbue.pass.cpp | 31 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 33 if (ev == std::ios_base::imbue_event) in f1() 44 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 46 if (ev == std::ios_base::imbue_event) in f2() 57 void f3(std::ios_base::event ev, std::ios_base& stream, int index) in f3() argument 59 if (ev == std::ios_base::imbue_event) in f3()
|
D | move.pass.cpp | 42 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 47 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 52 void g1(std::ios_base::event ev, std::ios_base& stream, int index) in g1() argument 54 if (ev == std::ios_base::imbue_event) in g1() 61 void g2(std::ios_base::event ev, std::ios_base& stream, int index) in g2() argument 63 if (ev == std::ios_base::imbue_event) in g2() 70 void g3(std::ios_base::event ev, std::ios_base& stream, int index) in g3() argument 72 if (ev == std::ios_base::imbue_event) in g3()
|
D | copyfmt.pass.cpp | 34 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 36 if (ev == std::ios_base::erase_event) in f1() 49 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 51 if (ev == std::ios_base::erase_event) in f2() 64 void g1(std::ios_base::event ev, std::ios_base& stream, int index) in g1() argument 66 if (ev == std::ios_base::copyfmt_event) in g1() 79 void g2(std::ios_base::event ev, std::ios_base& stream, int index) in g2() argument 81 if (ev == std::ios_base::copyfmt_event) in g2() 94 void g3(std::ios_base::event ev, std::ios_base& stream, int index) in g3() argument 96 if (ev == std::ios_base::copyfmt_event) in g3()
|
D | swap.pass.cpp | 41 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 47 void f2(std::ios_base::event ev, std::ios_base& stream, int index) in f2() argument 53 void g1(std::ios_base::event ev, std::ios_base& stream, int index) in g1() argument 59 void g2(std::ios_base::event ev, std::ios_base& stream, int index) in g2() argument 65 void g3(std::ios_base::event ev, std::ios_base& stream, int index) in g3() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/ |
D | register_callback.pass.cpp | 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) in f1() argument 37 if (ev == std::ios_base::imbue_event) in f1()
|
/ndk/build/core/ |
D | definitions.mk | 83 define ev-generate-dir 98 generate-dir = $(eval $(call ev-generate-dir,$1)) 113 define ev-generate-file-dir 119 generate-file-dir = $(eval $(call ev-generate-file-dir,$1)) 294 define generate-list-file-ev 316 generate-list-file = $(eval $(call generate-list-file-ev,$1,$2)) 987 handle-module-filename = $(eval $(call ev-handle-module-filename,$1,$2)) 995 define ev-check-module-filename 1017 define ev-handle-module-filename 1022 $$(eval $$(call ev-check-module-filename)) [all …]
|
D | prebuilt-library.mk | 59 $(eval $(call ev-check-module-filename))
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/ |
D | default_ctor.pass.cpp | 29 virtual std::string message(int ev) const {return std::string();} in message()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | system_error | 30 virtual error_condition default_error_condition(int ev) const noexcept; 33 virtual string message(int ev) const = 0; 109 system_error(int ev, const error_category& ecat, const string& what_arg); 110 system_error(int ev, const error_category& ecat, const char* what_arg); 111 system_error(int ev, const error_category& ecat); 403 virtual string message(int ev) const; 638 _LIBCPP_FUNC_VIS void __throw_system_error(int ev, const char* what_arg);
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 5 define ev-gen-test 146 $(if $(strip $(filter-out $(black_list), $1)), $(eval $(call ev-gen-test, $1)))
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 5 define ev-gen-test 137 $(if $(strip $(filter-out $(black_list), $1)), $(eval $(call ev-gen-test, $1)))
|