Home
last modified time | relevance | path

Searched refs:this_ (Results 1 – 25 of 55) sorted by relevance

123

/third_party/boost/libs/local_function/test/
Dall_decl_seq.cpp32 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 …]
Dall_decl.cpp37 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 …]
Dadd_typed_seq.cpp18 (bind(adder*) this_) (int num) (return int) ) { in sum()
19 return this_->sum_ += factor * num; in sum()
Dadd_typed.cpp25 bind(adder*) this_, int num, return int) { in sum()
26 return this_->sum_ += factor * num; in sum()
Dreturn_this_seq.cpp21 int BOOST_LOCAL_FUNCTION( (bind this_) ) { in inc()
22 return ++this_->value_; in inc()
Dadd_this_seq.cpp23 void BOOST_LOCAL_FUNCTION( (const bind factor) (bind this_) in sum()
25 this_->sum_ += factor * num; in sum()
Dadd_this.cpp29 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()
Dreturn_this.cpp26 int BOOST_LOCAL_FUNCTION(bind this_) { in inc()
27 return ++this_->value_; in inc()
/third_party/boost/libs/contract/example/features/
Dno_lambdas_local_func.cpp36 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/
Dthis.hpp21 (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/
Dconfix.ipp89 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/
Dexecution_monitor.hpp203 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/
Dparser_context.hpp138 #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/
Dn2529_this.cpp24 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/
Dstrand_executor_service.hpp102 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/
Dstrand_executor_service.hpp102 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/
Dawaitable.hpp106 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/
Dawaitable.hpp106 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/
Dlexer.hpp49 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/
Dnative_this.cpp22 BOOST_SCOPE_EXIT( (this_) ) { in check()
23 BOOST_TEST(this_->value_ == 0); in check()
Dnative_this_tpl.cpp24 BOOST_SCOPE_EXIT_TPL( (this_) ) { in check()
25 BOOST_TEST(this_->value_ == 0); in check()
Dworld_this_seq.cpp33 BOOST_SCOPE_EXIT( (&commit) (this_) ) { in BOOST_TYPEOF_REGISTER_TYPE()
34 if(!commit) this_->persons_.pop_back(); in BOOST_TYPEOF_REGISTER_TYPE()
Dworld_this.cpp39 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()
Dworld_tpl_seq.cpp34 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/
Dthisunderscore.hpp55 this_)
60 this_)

123