/third_party/boost/boost/spirit/home/qi/detail/ |
D | construct.hpp | 86 Iterator first_ = first; in call() local 87 qi::parse(first_, last, bool_type(), attr); in call() 97 Iterator first_ = first; in call() local 98 qi::parse(first_, last, short_type(), attr); in call() 108 Iterator first_ = first; in call() local 109 qi::parse(first_, last, int_type(), attr); in call() 118 Iterator first_ = first; in call() local 119 qi::parse(first_, last, uint_type(), attr); in call() 129 Iterator first_ = first; in call() local 130 qi::parse(first_, last, long_type(), attr); in call() [all …]
|
/third_party/boost/boost/iostreams/detail/ |
D | double_object.hpp | 44 single_object_holder(param_type t) : first_(t) { } in single_object_holder() 45 reference first() { return first_; } in first() 46 const_reference first() const { return first_; } in first() 47 reference second() { return first_; } in second() 48 const_reference second() const { return first_; } in second() 50 { std::swap(first_, o.first_); } in swap() 52 T first_; member in boost::iostreams::detail::single_object_holder 68 : first_(t1), second_(t2) { } in double_object_holder() 69 reference first() { return first_; } in first() 70 const_reference first() const { return first_; } in first() [all …]
|
/third_party/boost/boost/asio/detail/ |
D | thread_group.hpp | 33 : first_(0) in thread_group() 47 first_ = new item(f, first_); in create_thread() 61 while (first_) in join() 63 first_->thread_.join(); in join() 64 item* tmp = first_; in join() 65 first_ = first_->next_; in join() 73 return first_ == 0; in empty() 92 item* first_; member in boost::asio::detail::thread_group
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | thread_group.hpp | 33 : first_(0) in thread_group() 47 first_ = new item(f, first_); in create_thread() 61 while (first_) in join() 63 first_->thread_.join(); in join() 64 item* tmp = first_; in join() 65 first_ = first_->next_; in join() 73 return first_ == 0; in empty() 92 item* first_; member in boost::asio::detail::thread_group
|
/third_party/boost/boost/asio/detail/impl/ |
D | timer_queue_set.ipp | 28 : first_(0) 34 q->next_ = first_; 35 first_ = q; 40 if (first_) 42 if (q == first_) 44 first_ = q->next_; 49 for (timer_queue_base* p = first_; p->next_; p = p->next_) 63 for (timer_queue_base* p = first_; p; p = p->next_) 72 for (timer_queue_base* p = first_; p; p = p->next_) 80 for (timer_queue_base* p = first_; p; p = p->next_) [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | timer_queue_set.ipp | 28 : first_(0) 34 q->next_ = first_; 35 first_ = q; 40 if (first_) 42 if (q == first_) 44 first_ = q->next_; 49 for (timer_queue_base* p = first_; p->next_; p = p->next_) 63 for (timer_queue_base* p = first_; p; p = p->next_) 72 for (timer_queue_base* p = first_; p; p = p->next_) 80 for (timer_queue_base* p = first_; p; p = p->next_) [all …]
|
/third_party/boost/libs/unordered/test/helpers/ |
D | list.hpp | 64 node* first_; member in test::test_detail::list_data 68 list_data() : first_(0), last_ptr_(&first_), size_(0) {} in list_data() 72 while (first_) { in ~list_data() 73 node* tmp = first_; in ~list_data() 74 first_ = first_->next_; in ~list_data() 194 iterator begin() { return iterator(data_.first_); } in begin() 196 const_iterator begin() const { return iterator(data_.first_); } in begin() 198 const_iterator cbegin() const { return iterator(data_.first_); } in cbegin() 209 data_.first_ = new node(v, data_.first_); in push_front() 224 while (data_.first_) { in clear() [all …]
|
/third_party/boost/tools/quickbook/src/ |
D | cleanup.hpp | 39 cleanup() : first_(0) {} in cleanup() 44 detail::cleanup_node* first_; member 91 n2->next_ = first_; in add() 92 first_ = n2; in add() 99 while (first_) { in ~cleanup() 100 detail::cleanup_node* to_delete = first_; in ~cleanup() 101 first_ = first_->next_; in ~cleanup()
|
/third_party/boost/libs/mpl/test/ |
D | pair_view.cpp | 28 typedef begin<view>::type first_; in MPL_TEST_CASE() typedef 31 MPL_ASSERT(( is_same< first_::category, mpl::random_access_iterator_tag > )); in MPL_TEST_CASE() 33 MPL_ASSERT(( is_same< advance_c<first_,0>::type, first_ > )); in MPL_TEST_CASE() 35 MPL_ASSERT(( is_same< advance_c<first_,10>::type, last_ > )); in MPL_TEST_CASE() 36 MPL_ASSERT(( is_same< advance_c<last_,-10>::type, first_ > )); in MPL_TEST_CASE() 38 typedef advance_c<first_,5>::type iter; in MPL_TEST_CASE()
|
D | find_if.cpp | 25 typedef begin<types>::type first_; typedef 31 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, 6 ); in MPL_TEST_CASE() 38 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, 2 ); in MPL_TEST_CASE() 45 MPL_ASSERT_RELATION( (mpl::distance<first_,iter>::value), ==, size<types>::value ); in MPL_TEST_CASE()
|
/third_party/boost/boost/xpressive/detail/utility/chset/ |
D | range_run.ipp | 29 : first_(first) 38 return this->first_ <= this->last_; 45 return (this->first_ <= r.first_) && (this->last_ >= r.last_); 52 return (this->first_ <= v) && (this->last_ >= v); 59 Char decr_first = (std::min)(this->first_, Char(this->first_-1)); 62 return (decr_first <= r.last_) && (incr_last >= r.first_); 69 this->first_ = (std::min)(this->first_, r.first_); 112 if(tr.in_range_nocase(begin->first_, begin->last_, v)) 187 (left_iter = (iter - 1))->includes(r.first_)) 192 left_iter->last_ = r.first_-1; [all …]
|
/third_party/boost/boost/spirit/home/qi/ |
D | parse.hpp | 43 Iterator const& first_ in parse() argument 47 Iterator first = first_; in parse() 94 Iterator const& first_ in parse() argument 99 Iterator first = first_; in parse() 127 Iterator const& first_ in phrase_parse() argument 133 Iterator first = first_; in phrase_parse() 180 Iterator const& first_ in phrase_parse() argument 187 Iterator first = first_; in phrase_parse() 207 Iterator const& first_ in phrase_parse() argument 213 Iterator first = first_; in phrase_parse()
|
/third_party/boost/boost/detail/ |
D | compressed_pair.hpp | 120 : first_(x), second_(y) {} in compressed_pair_imp() 123 : first_(x) {} in compressed_pair_imp() 128 first_reference first() {return first_;} in first() 129 first_const_reference first() const {return first_;} in first() 136 cp_swap(first_, y.first()); in swap() 140 first_type first_; member in boost::details::compressed_pair_imp 205 : second_type(y), first_(x) {} in compressed_pair_imp() 208 : first_(x) {} in compressed_pair_imp() 213 first_reference first() {return first_;} in first() 214 first_const_reference first() const {return first_;} in first() [all …]
|
/third_party/boost/boost/icl/detail/ |
D | interval_set_algo.hpp | 323 iterator first_ = overlap.first, in join_under() local 327 iterator second_= first_; ++second_; in join_under() 329 interval_type left_resid = right_subtract(key_value<Type>(first_), addend); in join_under() 334 const_cast<value_type&>(key_value<Type>(first_)) in join_under() 336 return first_; in join_under() 349 iterator first_ = object.lower_bound(addend); in join_under() local 351 iterator second_= boost::next(first_), end_ = boost::next(last_); in join_under() 353 interval_type left_resid = right_subtract(key_value<Type>(first_), addend); in join_under() 358 const_cast<value_type&>(key_value<Type>(first_)) in join_under() 360 return first_; in join_under() [all …]
|
/third_party/boost/libs/stl_interfaces/ |
D | README.md | 21 first_(nullptr), 29 first_(first), 36 return first_[n_ % size_]; 41 return first_[(n_ + n) % size_]; 81 return lhs.first_ == rhs.first_ && lhs.n_ == rhs.n_; 91 return lhs.first_ == rhs.first_ && lhs.n_ < rhs.n_; 131 char const * first_; 147 first_(nullptr), 153 first_(first), 158 constexpr char operator*() const noexcept { return first_[n_ % size_]; } [all …]
|
/third_party/boost/boost/ |
D | tokenizer.hpp | 55 : first_(first), last_(last), f_(f) { } in tokenizer() 59 : first_(c.begin()), last_(c.end()), f_() { } in tokenizer() 63 : first_(c.begin()), last_(c.end()), f_(f) { } in tokenizer() 66 first_ = first; in assign() 86 iter begin() const { return iter(f_,first_,last_); } in begin() 90 Iterator first_; member in boost::tokenizer
|
/third_party/boost/boost/spirit/home/x3/core/ |
D | parse.hpp | 55 Iterator const& first_ in parse() argument 60 Iterator first = first_; in parse() 79 Iterator const& first_ in parse() argument 83 Iterator first = first_; in parse() 143 Iterator const& first_ in phrase_parse() argument 150 Iterator first = first_; in phrase_parse() 171 Iterator const& first_ in phrase_parse() argument 177 Iterator first = first_; in phrase_parse()
|
/third_party/boost/boost/spirit/home/qi/stream/detail/ |
D | iterator_source.hpp | 27 base_iterator_source (Iterator const& first_, Iterator const& last_) in base_iterator_source() 28 : first(first_), last(last_), pos(0) in base_iterator_source() 81 iterator_source (Iterator const& first_, Iterator const& last_) in iterator_source() 82 : base_type(first_, last_) {} in iterator_source() 96 iterator_source (Iterator const& first_, Iterator const& last_) in iterator_source() 97 : base_type(first_, last_) {} in iterator_source()
|
/third_party/boost/boost/beast/core/impl/ |
D | buffers_adaptor.hpp | 59 : first_(other.first_) in subrange() 69 first_ = other.first_; in operator =() 86 : first_(other.first_) in subrange() 110 iter_type first_; member in boost::beast::buffers_adaptor::subrange 459 : first_(first) in subrange() 477 last_ = first_; in adjust() 479 if (first_ == last_) in adjust() 494 auto adjust = (std::min)(pos, first_->size()); in adjust() 495 if (adjust >= first_->size()) in adjust() 497 ++first_; in adjust() [all …]
|
/third_party/boost/libs/beast/include/boost/beast/core/impl/ |
D | buffers_adaptor.hpp | 59 : first_(other.first_) in subrange() 69 first_ = other.first_; in operator =() 86 : first_(other.first_) in subrange() 110 iter_type first_; member in boost::beast::buffers_adaptor::subrange 459 : first_(first) in subrange() 477 last_ = first_; in adjust() 479 if (first_ == last_) in adjust() 494 auto adjust = (std::min)(pos, first_->size()); in adjust() 495 if (adjust >= first_->size()) in adjust() 497 ++first_; in adjust() [all …]
|
/third_party/boost/boost/beast/http/impl/ |
D | rfc7230.hpp | 141 iter_type first_; member in boost::beast::http::ext_list::const_iterator 158 other.first_ == first_ && in operator ==() 201 first_ = begin; in const_iterator() 254 iter_type first_; member in boost::beast::http::token_list::const_iterator 271 other.first_ == first_ && in operator ==() 314 first_ = begin; in const_iterator()
|
/third_party/boost/libs/beast/include/boost/beast/http/impl/ |
D | rfc7230.hpp | 141 iter_type first_; member in boost::beast::http::ext_list::const_iterator 158 other.first_ == first_ && in operator ==() 201 first_ = begin; in const_iterator() 254 iter_type first_; member in boost::beast::http::token_list::const_iterator 271 other.first_ == first_ && in operator ==() 314 first_ = begin; in const_iterator()
|
/third_party/boost/boost/io/ |
D | ostream_joiner.hpp | 59 , first_(true) { } in ostream_joiner() 65 , first_(true) { } in ostream_joiner() 70 if (!first_) { in operator =() 73 first_ = false; in operator =() 93 bool first_; member in boost::io::ostream_joiner
|
/third_party/boost/boost/icl/ |
D | interval_base_map.hpp | 501 void add_front(const interval_type& inter_val, iterator& first_); 504 void subtract_front(const interval_type& inter_val, iterator& first_); 761 const_iterator first_ = exterior.first; in flip() local 766 const_iterator it_ = first_; in flip() 817 ::add_front(const interval_type& inter_val, iterator& first_) in add_front() argument 824 interval_type left_resid = right_subtract((*first_).first, inter_val); in add_front() 829 iterator prior_ = cyclic_prior(*this, first_); in add_front() 830 const_cast<interval_type&>((*first_).first) in add_front() 831 = left_subtract((*first_).first, left_resid); in add_front() 833 this->_map.insert(prior_, segment_type(left_resid, (*first_).second)); in add_front() [all …]
|
/third_party/boost/libs/stl_interfaces/example/ |
D | repeated_chars_iterator.cpp | 21 first_(nullptr), in repeated_chars_iterator() 27 first_(first), in repeated_chars_iterator() 32 constexpr char operator*() const noexcept { return first_[n_ % size_]; } in operator *() 44 char const * first_; member
|