Home
last modified time | relevance | path

Searched refs:mem_fun (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/boost/multi_index/detail/
Dscope_guard.hpp305 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/
Dscope_guard.hpp84 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/
Dfunction_test.cpp272 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/
Dboost_no_ptr_mem_const.ipp54 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);
Dboost_no_cxx98_binders.ipp9 // 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/
Dinvoke.h82 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/
Dinvoke.h82 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/
Dfaq.qbk12 [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
Dpurpose.qbk12 `boost::mem_fn` is a generalization of the standard functions `std::mem_fun`
/third_party/boost/libs/multi_index/test/
Dtest_key.cpp80 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/
Dmem_fun.hpp139 struct mem_fun: struct
273 ::boost::multi_index::mem_fun< Class,Type,&Class::MemberFunName >
Dkey.hpp62 BOOST_MULTI_INDEX_KEY_TYPED_KEY_IMPL( ,mem_fun)
/third_party/boost/libs/function/test/
Dstd_bind_cxx98.cpp27 std::mem_fun(&X::foo), &x); in main()
Dstd_bind_portable.cpp27 std::mem_fun(&X::foo), &x); in main()
/third_party/boost/libs/function/example/
Dbind1st.cpp28 f = std::bind1st(std::mem_fun(&X::foo), &x); in main()
/third_party/boost/boost/
Dfunctional.hpp409 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/
Dregex_grep_example_3.cpp98 boost::regex_grep(std::bind1st(std::mem_fun(&class_index::grep_callback), this), in IndexClasses()
/third_party/boost/libs/test/example/
Dunit_test_example_12.cpp69 BOOST_TEST_BIND1ST( boost::mem_fun( &hash_function::helper_ ), this ) ); in operator ()()
/third_party/boost/libs/regex/doc/
Dregex_grep.qbk210 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/
Doptions_heirarchy.cpp224 std::bind1st(std::mem_fun(&OptionsHeirarchy::EnvironmentMapper), this))), in ParseEnvironment()
/third_party/ninja/src/
Dbuild.cc499 #define MEM_FN mem_fun in CleanNode()
/third_party/boost/libs/config/doc/
Dmacro_reference.qbk1002 …longer supports `std::bind1st`, `std::bind2nd`, `std::ptr_fun` and `std::mem_fun`. They were depre…