Home
last modified time | relevance | path

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

/third_party/boost/boost/ptr_container/detail/
Dscoped_deleter.hpp35 scoped_array<T*> ptrs_; member in boost::ptr_container_detail::scoped_deleter
42 ptrs_( a ), in scoped_deleter()
51 ptrs_( new T*[size] ), in scoped_deleter()
62 ptrs_( new T*[n] ), in scoped_deleter()
76 ptrs_( new T*[ std::distance(first,last) ] ), in scoped_deleter()
92 cont_.null_policy_deallocate_clone( ptrs_[i] ); in ~scoped_deleter()
100 BOOST_ASSERT( ptrs_.get() != 0 ); in add()
101 ptrs_[stored_] = t; in add()
116 BOOST_ASSERT( ptrs_.get() != 0 ); in begin()
117 return &ptrs_[0]; in begin()
[all …]
/third_party/gn/src/gn/
Dvector_utils.h39 ptrs_.reserve(initial_capacity);
44 ptrs_.push_back(&item); in Add()
52 ptrs_.push_back(&(*begin)); in Add()
59 ptrs_.push_back(start); in Add()
72 for (const T* item : ptrs_) { in IterateOver()
84 result.reserve(ptrs_.size()); in AsVector()
94 std::sort(ptrs_.begin(), ptrs_.end(), in Sort()
99 std::vector<const T*> ptrs_; variable
/third_party/boost/boost/iostreams/detail/adapter/
Ddirect_adapter.hpp68 double_object<pointers, is_double> ptrs_; member in boost::iostreams::detail::direct_adapter_base
78 using base_type::ptrs_;
177 ptrs_.first().beg = seq.first; in init_input()
178 ptrs_.first().ptr = seq.first; in init_input()
179 ptrs_.first().end = seq.second; in init_input()
186 ptrs_.second().beg = seq.first; in init_output()
187 ptrs_.second().ptr = seq.first; in init_output()
188 ptrs_.second().end = seq.second; in init_output()
198 pointers& get = ptrs_.first(); in read()
212 pointers& put = ptrs_.second(); in write()
[all …]
/third_party/boost/boost/multi_index/detail/
Drnd_index_loader.hpp55 random_access_index_loader_base(const Allocator& al_,ptr_array& ptrs_): in random_access_index_loader_base() argument
57 ptrs(ptrs_), in random_access_index_loader_base()
158 random_access_index_loader(const Allocator& al_,ptr_array& ptrs_): in random_access_index_loader() argument
159 super(al_,ptrs_) in random_access_index_loader()