Searched refs:__opt (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | operations.h | 39 __copy_file(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr); 43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr); 80 …ne _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, copy_options __opt) { in copy_file() argument 81 return __copy_file(__from, __to, __opt); in copy_file() 84 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() argument 85 return __copy_file(__from, __to, __opt, &__ec); in copy_file() 97 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt) { in copy() argument 98 __copy(__from, __to, __opt); in copy() 100 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt, er… in copy() argument 101 __copy(__from, __to, __opt, &__ec); in copy()
|
| H A D | recursive_directory_iterator.h | 111 …_LIBCPP_EXPORTED_FROM_ABI recursive_directory_iterator(const path& __p, directory_options __opt, e…
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | optional | 368 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __construct_from(_That&& __opt) { 369 if (__opt.has_value()) 370 __construct(std::forward<_That>(__opt).__get()); 374 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __assign_from(_That&& __opt) { 375 if (this->__engaged_ == __opt.has_value()) { 377 this->__val_ = std::forward<_That>(__opt).__get(); 382 __construct(std::forward<_That>(__opt).__get()); 440 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __construct_from(_That&& __opt) { 441 if (__opt.has_value()) 442 __construct(std::forward<_That>(__opt).__get()); [all …]
|
| H A D | locale | 1838 char __opt = '\0'; 1844 __opt = __cmd; 1847 __b = do_get(__b, __e, __iob, __err, __tm, __cmd, __opt);
|
| /src/sys/dev/dpaa2/ |
| H A D | dpaa2_buf.h | 53 #define DPAA2_BUF_INIT_TAGOPT(__buf, __tag, __opt) do { \ argument 65 (__buf)->opt = (__opt); \
|