Searched refs:storage_ (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/ |
| H A D | 0008-chromium-Move-CharAllocator-definition-to-a-header-f.patch | 127 - last_list_ = storage_[last_list_index_].get(); 139 - if (last_list_index_ + 1 >= storage_.size()) 143 - last_list_ = storage_[last_list_index_].get(); 152 - size_t list_count() const { return storage_.size(); } 158 - for (const auto& inner_list : storage_) 165 - DCHECK(!storage_.empty()); 166 - storage_.erase(storage_.begin() + 1, storage_.end()); 168 - last_list_ = storage_[0].get(); 178 - last_list_ = storage_[last_list_index_].get(); 181 - if (last_list_index_ + 2 < storage_.size()) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/ |
| H A D | variant.hpp | 436 void* storage_; member in boost::detail::variant::copy_into 441 : storage_(storage) in copy_into() 451 new(storage_) T( operand.get() ); in internal_visit() 459 new(storage_) T( operand.get() ); in internal_visit() 467 new(storage_) T(operand); in internal_visit() 484 void* storage_; member in boost::detail::variant::move_into 489 : storage_(storage) in move_into() 499 new(storage_) T( ::boost::detail::variant::move(operand.get()) ); in internal_visit() 507 new(storage_) T(::boost::detail::variant::move(operand)); in internal_visit() 770 copy_rhs_content_(lhs_.storage_.address(), rhs_content_); in backup_assign_impl() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/streambuf/ |
| H A D | direct_streambuf.hpp | 68 T* component() { return storage_.get(); } in component() 101 optional<T> storage_; member in boost::iostreams::detail::direct_streambuf 117 storage_.reset(t); in open() 135 detail::call_reset(storage_) ); in close() 213 boost::iostreams::close(*storage_, which); in close_impl() 262 std::pair<char_type*, char_type*> p = input_sequence(*storage_); in init_input() 270 std::pair<char_type*, char_type*> p = output_sequence(*storage_); in init_output()
|
| H A D | indirect_streambuf.hpp | 103 wrapper& obj() { return *storage_; } in obj() 130 optional<wrapper> storage_; member in boost::iostreams::detail::indirect_streambuf 185 storage_.reset(wrapper(t)); in open() 205 detail::call_reset(storage_), in close()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/ |
| H A D | optional.hpp | 106 void* address() { return &storage_; } in address() 107 const void* address() const { return &storage_; } in address() 108 aligned_storage<T> storage_; member in boost::iostreams::detail::optional
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/optional/f27e7908/include/experimental/ |
| H A D | optional | 300 storage_t<T> storage_; 302 constexpr optional_base() noexcept : init_(false), storage_(trivial_init) {}; 304 explicit constexpr optional_base(const T& v) : init_(true), storage_(v) {} 306 explicit constexpr optional_base(T&& v) : init_(true), storage_(constexpr_move(v)) {} 309 : init_(true), storage_(constexpr_forward<Args>(args)...) {} 313 : init_(true), storage_(il, std::forward<Args>(args)...) {} 315 ~optional_base() { if (init_) storage_.value_.T::~T(); } 323 constexpr_storage_t<T> storage_; 325 constexpr constexpr_optional_base() noexcept : init_(false), storage_(trivial_init) {}; 327 explicit constexpr constexpr_optional_base(const T& v) : init_(true), storage_(v) {} [all …]
|