/third_party/boost/libs/local_function/test/ |
D | all_decl_seq.cpp | 32 const s& BOOST_LOCAL_FUNCTION( (const bind this_) ) { in f() 33 return *this_; in f() 39 (const bind this_) ) { in f() 53 s& BOOST_LOCAL_FUNCTION( (bind this_) ) { in f() 54 return *this_; in f() 59 (bind& p) (bind& q) (bind this_) ) { in f() 74 void BOOST_LOCAL_FUNCTION( (const bind this_) in f() 79 void BOOST_LOCAL_FUNCTION( (const bind a) (const bind this_) in f() 93 void BOOST_LOCAL_FUNCTION( (bind this_) in f() 99 (bind& p) (bind this_) (bind q) in f() [all …]
|
D | all_decl.cpp | 37 const s& BOOST_LOCAL_FUNCTION(const bind this_) { in f() 38 return *this_; in f() 44 const bind this_) { in f() 58 s& BOOST_LOCAL_FUNCTION(bind this_) { in f() 59 return *this_; in f() 64 bind& p, bind& q, bind this_) { in f() 79 void BOOST_LOCAL_FUNCTION(const bind this_, in f() 84 void BOOST_LOCAL_FUNCTION(const bind a, const bind this_, in f() 98 void BOOST_LOCAL_FUNCTION(bind this_, in f() 104 bind& p, bind this_, bind q, in f() [all …]
|
D | add_typed_seq.cpp | 18 (bind(adder*) this_) (int num) (return int) ) { in sum() 19 return this_->sum_ += factor * num; in sum()
|
D | add_typed.cpp | 25 bind(adder*) this_, int num, return int) { in sum() 26 return this_->sum_ += factor * num; in sum()
|
D | return_this_seq.cpp | 21 int BOOST_LOCAL_FUNCTION( (bind this_) ) { in inc() 22 return ++this_->value_; in inc()
|
D | add_this_seq.cpp | 23 void BOOST_LOCAL_FUNCTION( (const bind factor) (bind this_) in sum() 25 this_->sum_ += factor * num; in sum()
|
D | add_this.cpp | 29 void BOOST_LOCAL_FUNCTION(const bind factor, bind this_, int num) { in sum() 30 this_->sum_ += factor * num; // Use `this_` instead of `this`. in sum()
|
D | return_this.cpp | 26 int BOOST_LOCAL_FUNCTION(bind this_) { in inc() 27 return ++this_->value_; in inc()
|
/third_party/boost/libs/contract/example/features/ |
D | no_lambdas_local_func.cpp | 36 void BOOST_LOCAL_FUNCTION(const bind this_, const bind& count, in iarray() 38 BOOST_CONTRACT_ASSERT(this_->size() == count); in iarray() 39 BOOST_CONTRACT_ASSERT(this_->instances() == *old_instances + 1); in iarray() 51 void BOOST_LOCAL_FUNCTION(const bind this_, bind& old_instances) { in ~iarray() 52 old_instances = BOOST_CONTRACT_OLDOF(this_->instances()); in ~iarray() 66 void BOOST_LOCAL_FUNCTION(const bind this_) { in push_back() 67 BOOST_CONTRACT_ASSERT(this_->size() < this_->capacity()); in push_back() 69 void BOOST_LOCAL_FUNCTION(const bind v, const bind this_, in push_back() 71 old_size = BOOST_CONTRACT_OLDOF(v, this_->size()); in push_back() 73 void BOOST_LOCAL_FUNCTION(const bind this_, const bind& old_size) { in push_back() [all …]
|
/third_party/boost/boost/phoenix/scope/ |
D | this.hpp | 21 (boost)(phoenix)(this_) 173 struct default_actions::when<rule::this_, Dummy> 178 struct is_nullary::when<rule::this_, Dummy> 183 typename expression::this_<A0>::type const 184 this_(A0 const & a0) in this_() function 186 return expression::this_<A0>::make(a0); in this_()
|
/third_party/boost/boost/spirit/home/classic/utility/impl/ |
D | confix.ipp | 89 LexemeT const &, ParserT const& this_, ScannerT const& scan, 97 >> (this_ | refactor_body_d[expr - close]) 112 LexemeT const &, ParserT const& /*this_*/, ScannerT const& scan, 141 LexemeT const &, ParserT const& this_, ScannerT const& scan, 146 >> (this_ | (expr - close)) 161 LexemeT const &, ParserT const & /*this_*/, ScannerT const& scan, 186 ParserT const& this_, ScannerT const& scan, 190 parse(lexeme, this_, scan, open, expr, close); 205 ParserT const& this_, ScannerT const& scan, 209 parse(lexeme, this_, scan, open, expr, close);
|
/third_party/boost/boost/test/ |
D | execution_monitor.hpp | 203 translator_holder_base_ptr erase( translator_holder_base_ptr this_, const_string tag ) in erase() argument 208 return m_tag == tag ? m_next : this_; in erase() 211 …virtual translator_holder_base_ptr erase( translator_holder_base_ptr this_, std::type_info const& … 213 …translator_holder_base_ptr erase( translator_holder_base_ptr this_, boost::type<ExceptionType>* = … in erase() argument 218 return erase( this_, typeid(ExceptionType) ); in erase() 456 …translator_holder_base_ptr erase( translator_holder_base_ptr this_, std::type_info const& ti ) BOO… in erase() argument 458 return ti == typeid(ExceptionType) ? m_next : this_; in erase()
|
/third_party/boost/boost/spirit/home/classic/core/non_terminal/ |
D | parser_context.hpp | 138 #define BOOST_SPIRIT_CONTEXT_PARSE(scan, this_, scanner_t, context_t, result_t) \ argument 140 context_t context_wrap(this_); \ 141 context_wrap.pre_parse(this_, scan_wrap); \ 143 return context_wrap.post_parse(hit, this_, scan_wrap);
|
/third_party/boost/libs/local_function/example/ |
D | n2529_this.cpp | 24 void BOOST_LOCAL_FUNCTION(bind this_, int i) { // Bind object `this`. in change_sign_all() 25 this_->nums.at(i) = -this_->nums.at(i); in change_sign_all()
|
/third_party/boost/boost/asio/detail/impl/ |
D | strand_executor_service.hpp | 102 invoker* this_; member 106 if (push_waiting_to_ready(this_->impl_)) in ~on_invoker_exit() 111 boost::asio::require(this_->executor_, in ~on_invoker_exit() 114 BOOST_ASIO_MOVE_CAST(invoker)(*this_)); in ~on_invoker_exit() 171 invoker* this_; member 175 if (push_waiting_to_ready(this_->impl_)) in ~on_invoker_exit() 177 Executor ex(this_->work_.get_executor()); in ~on_invoker_exit() 179 ex.post(BOOST_ASIO_MOVE_CAST(invoker)(*this_), allocator); in ~on_invoker_exit()
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | strand_executor_service.hpp | 102 invoker* this_; member 106 if (push_waiting_to_ready(this_->impl_)) in ~on_invoker_exit() 111 boost::asio::require(this_->executor_, in ~on_invoker_exit() 114 BOOST_ASIO_MOVE_CAST(invoker)(*this_)); in ~on_invoker_exit() 171 invoker* this_; member 175 if (push_waiting_to_ready(this_->impl_)) in ~on_invoker_exit() 177 Executor ex(this_->work_.get_executor()); in ~on_invoker_exit() 179 ex.post(BOOST_ASIO_MOVE_CAST(invoker)(*this_), allocator); in ~on_invoker_exit()
|
/third_party/boost/libs/asio/include/boost/asio/impl/ |
D | awaitable.hpp | 106 awaitable_frame_base* this_; in final_suspend() member 115 this->this_->pop_frame(); in final_suspend() 162 awaitable_frame_base* this_; in await_transform() member 175 return this_->attached_thread_->get_executor(); in await_transform() 198 awaitable_frame_base* this_; in await_transform() member 207 function_(this_); in await_transform()
|
/third_party/boost/boost/asio/impl/ |
D | awaitable.hpp | 106 awaitable_frame_base* this_; in final_suspend() member 115 this->this_->pop_frame(); in final_suspend() 162 awaitable_frame_base* this_; in await_transform() member 175 return this_->attached_thread_->get_executor(); in await_transform() 198 awaitable_frame_base* this_; in await_transform() member 207 function_(this_); in await_transform()
|
/third_party/boost/boost/spirit/home/lex/lexer/ |
D | lexer.hpp | 49 lexer_def_& this_() { return *this; } in this_() function 233 , add(this_()), add_pattern(this_()), def(def_) in lexer_def_() 364 lexer& this_() { return *this; } in this_() function in boost::spirit::lex::lexer 384 , self(this_(), lexer_type::initial_state()) in lexer() 390 , self(this_(), lexer_type::initial_state()) in lexer()
|
/third_party/boost/libs/scope_exit/test/ |
D | native_this.cpp | 22 BOOST_SCOPE_EXIT( (this_) ) { in check() 23 BOOST_TEST(this_->value_ == 0); in check()
|
D | native_this_tpl.cpp | 24 BOOST_SCOPE_EXIT_TPL( (this_) ) { in check() 25 BOOST_TEST(this_->value_ == 0); in check()
|
D | world_this_seq.cpp | 33 BOOST_SCOPE_EXIT( (&commit) (this_) ) { in BOOST_TYPEOF_REGISTER_TYPE() 34 if(!commit) this_->persons_.pop_back(); in BOOST_TYPEOF_REGISTER_TYPE()
|
D | world_this.cpp | 39 BOOST_SCOPE_EXIT(&commit, this_) { // Capture object `this_`. in BOOST_TYPEOF_REGISTER_TYPE() 40 if(!commit) this_->persons_.pop_back(); in BOOST_TYPEOF_REGISTER_TYPE()
|
D | world_tpl_seq.cpp | 34 BOOST_SCOPE_EXIT_TPL( (&commit) (this_) ) { in add_person() 35 if(!commit) this_->persons_.pop_back(); in add_person()
|
/third_party/boost/boost/local_function/detail/preprocessor/keyword/ |
D | thisunderscore.hpp | 55 this_) 60 this_)
|