/third_party/boost/boost/multi_index/detail/ |
D | scope_guard.hpp | 305 obj_scope_guard_impl0(Obj& obj,MemFun mem_fun):obj_(obj),mem_fun_(mem_fun){} in obj_scope_guard_impl0() argument 315 inline obj_scope_guard_impl0<Obj,MemFun> make_obj_guard(Obj& obj,MemFun mem_fun) in make_obj_guard() argument 317 return obj_scope_guard_impl0<Obj,MemFun>(obj,mem_fun); in make_obj_guard() 322 make_obj_guard_if_c(Obj& obj,MemFun mem_fun) in make_obj_guard_if_c() argument 324 return typename null_guard_return<cond,obj_scope_guard_impl0<Obj,MemFun> >::type(obj,mem_fun); in make_obj_guard_if_c() 329 make_obj_guard_if(Obj& obj,MemFun mem_fun) in make_obj_guard_if() argument 331 return make_obj_guard_if_c<C::value>(obj,mem_fun); in make_obj_guard_if() 338 obj_scope_guard_impl1(Obj& obj,MemFun mem_fun,P1 p1): in obj_scope_guard_impl1() argument 339 obj_(obj),mem_fun_(mem_fun),p1_(p1){} in obj_scope_guard_impl1() 351 Obj& obj,MemFun mem_fun,P1 p1) in make_obj_guard() argument [all …]
|
/third_party/boost/boost/signals2/detail/ |
D | scope_guard.hpp | 84 obj_scope_guard_impl2(Obj& obj,MemFun mem_fun,P1 p1,P2 p2): in obj_scope_guard_impl2() argument 85 obj_(obj),mem_fun_(mem_fun),p1_(p1),p2_(p2) in obj_scope_guard_impl2() 99 make_obj_guard(Obj& obj,MemFun mem_fun,P1 p1,P2 p2) in make_obj_guard() argument 101 return obj_scope_guard_impl2<Obj,MemFun,P1,P2>(obj,mem_fun,p1,p2); in make_obj_guard()
|
/third_party/boost/libs/functional/test/ |
D | function_test.cpp | 272 boost::mem_fun(&Person::get_name)); in main() 277 boost::mem_fun(&Person::get_name)); in main() 282 boost::mem_fun(&Person::get_name)); in main() 298 std::for_each(v3.begin(), v3.end(), boost::bind2nd(boost::mem_fun(&Person::print), std::cout)); in main() 301 std::for_each(v3.begin(), v3.end(), boost::bind2nd(boost::mem_fun(&Person::print), os)); in main() 312 std::for_each(v2.begin(), v2.end(), boost::bind1st(boost::mem_fun(&Person::set_name), &person)); in main() 325 boost::mem_fun(&Person::clear_name)); in main()
|
/third_party/boost/libs/config/test/ |
D | boost_no_ptr_mem_const.ipp | 54 inline const_mem_fun_t<S,T> mem_fun(S (T::*f)() const) 60 inline const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const) 75 boost_no_pointer_to_member_const::mem_fun(&tester::foo1); 76 boost_no_pointer_to_member_const::mem_fun(&tester::foo2);
|
D | boost_no_cxx98_binders.ipp | 9 // TITLE: std::bind1st, prt_fun and mem_fun 27 return std::bind1st(std::ptr_fun(f2), 0)(0) + std::bind1st(std::mem_fun(&A::f1), &a)(0);
|
/third_party/abseil-cpp/absl/base/internal/ |
D | invoke.h | 82 Invoke(MemFun&& mem_fun, Obj&& obj, Args&&... args) { 84 std::forward<MemFun>(mem_fun))(std::forward<Args>(args)...); 103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) { 105 std::forward<MemFun>(mem_fun))(std::forward<Args>(args)...);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | invoke.h | 82 Invoke(MemFun&& mem_fun, Obj&& obj, Args&&... args) { 84 std::forward<MemFun>(mem_fun))(std::forward<Args>(args)...); 103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) { 105 std::forward<MemFun>(mem_fun))(std::forward<Args>(args)...);
|
/third_party/boost/libs/bind/doc/mem_fn/ |
D | faq.qbk | 12 [section Can `mem_fn` be used instead of the standard `std::mem_fun[_ref]` 23 [section Should I replace every occurence of `std::mem_fun[_ref]` with 28 `mem_fn` does not return objects of type `std::[const_]mem_fun[1][_ref]_t`, as
|
D | purpose.qbk | 12 `boost::mem_fn` is a generalization of the standard functions `std::mem_fun`
|
/third_party/boost/libs/multi_index/test/ |
D | test_key.cpp | 80 key<&base::f>,mem_fun<base,int,&base::f> in test_key() 104 key<&base::nef>,mem_fun<base,int,&base::nef> in test_key() 139 mem_fun<base,int,&base::f>, in test_key()
|
/third_party/boost/boost/multi_index/ |
D | mem_fun.hpp | 139 struct mem_fun: struct 273 ::boost::multi_index::mem_fun< Class,Type,&Class::MemberFunName >
|
D | key.hpp | 62 BOOST_MULTI_INDEX_KEY_TYPED_KEY_IMPL( ,mem_fun)
|
/third_party/boost/libs/function/test/ |
D | std_bind_cxx98.cpp | 27 std::mem_fun(&X::foo), &x); in main()
|
D | std_bind_portable.cpp | 27 std::mem_fun(&X::foo), &x); in main()
|
/third_party/boost/libs/function/example/ |
D | bind1st.cpp | 28 f = std::bind1st(std::mem_fun(&X::foo), &x); in main()
|
/third_party/boost/boost/ |
D | functional.hpp | 409 inline mem_fun_t<S,T> mem_fun(S (T::*f)()) in mem_fun() function 415 inline mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A)) in mem_fun() function 422 inline const_mem_fun_t<S,T> mem_fun(S (T::*f)() const) in mem_fun() function 428 inline const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const) in mem_fun() function
|
/third_party/boost/libs/regex/example/snippets/ |
D | regex_grep_example_3.cpp | 98 boost::regex_grep(std::bind1st(std::mem_fun(&class_index::grep_callback), this), in IndexClasses()
|
/third_party/boost/libs/test/example/ |
D | unit_test_example_12.cpp | 69 BOOST_TEST_BIND1ST( boost::mem_fun( &hash_function::helper_ ), this ) ); in operator ()()
|
/third_party/boost/libs/regex/doc/ |
D | regex_grep.qbk | 210 library adapters `std::mem_fun` and `std::bind1st` to convert the member 256 regex_grep(std::bind1st(std::mem_fun(&class_index::grep_callback), this),
|
/third_party/boost/libs/program_options/example/ |
D | options_heirarchy.cpp | 224 std::bind1st(std::mem_fun(&OptionsHeirarchy::EnvironmentMapper), this))), in ParseEnvironment()
|
/third_party/ninja/src/ |
D | build.cc | 499 #define MEM_FN mem_fun in CleanNode()
|
/third_party/boost/libs/config/doc/ |
D | macro_reference.qbk | 1002 …longer supports `std::bind1st`, `std::bind2nd`, `std::ptr_fun` and `std::mem_fun`. They were depre…
|