Home
last modified time | relevance | path

Searched refs:__storage_ (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Dfilesystem_error.h33 : system_error(__ec, __what), __storage_(make_shared<_Storage>(path(), path())) { in filesystem_error()
38 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, path())) { in filesystem_error()
43 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, __p2)) { in filesystem_error()
47 _LIBCPP_HIDE_FROM_ABI const path& path1() const noexcept { return __storage_->__p1_; } in path1()
49 _LIBCPP_HIDE_FROM_ABI const path& path2() const noexcept { return __storage_->__p2_; } in path2()
55 const char* what() const noexcept override { return __storage_->__what_.c_str(); } in what()
67 shared_ptr<_Storage> __storage_; variable
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dbuffer.h211 /// __writer_ to its __storage_. The \ref __capacity_ of the former depends
365 : __output_(__storage_.__begin(), __storage_.__buffer_size, this), __writer_(std::move(__out_it)) {}
381 _LIBCPP_NO_UNIQUE_ADDRESS _Storage __storage_;
403 __internal_storage<_CharT> __storage_;
404 __output_buffer<_CharT> __output_{__storage_.__begin(), __storage_.__buffer_size, this};
425 __internal_storage<_CharT> __storage_;
426 __output_buffer<_CharT> __output_{__storage_.__begin(), __storage_
[all...]
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dfilesystem_error.cpp22 __storage_->__what_ = [&]() -> string { in __create_what()
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dshared_ptr.h252 …_LIBCPP_HIDE_FROM_ABI explicit __shared_ptr_emplace(_Alloc __a, _Args&&...) : __storage_(std::move… in __shared_ptr_emplace()
261 …_LIBCPP_HIDE_FROM_ABI explicit __shared_ptr_emplace(_Alloc __a, _Args&&... __args) : __storage_(st… in __shared_ptr_emplace()
267 _LIBCPP_HIDE_FROM_ABI _Alloc* __get_alloc() _NOEXCEPT { return __storage_.__get_alloc(); } in __get_alloc()
269 _LIBCPP_HIDE_FROM_ABI _Tp* __get_elem() _NOEXCEPT { return __storage_.__get_elem(); } in __get_elem()
292 __storage_.~_Storage(); in __on_zero_shared_weak()
326 _Storage __storage_; member