Lines Matching refs:f
24 static bool wrapper_one(const XmlNodeAction::ActionFunc& f, Element* el, in wrapper_one() argument
26 return f(el); in wrapper_one()
29 static bool wrapper_two(const XmlNodeAction::ActionFuncWithDiag& f, Element* el, in wrapper_two() argument
32 return f(el, diag); in wrapper_two()
35 static bool wrapper_three(const XmlNodeAction::ActionFuncWithPolicyAndDiag& f, Element* el, in wrapper_three() argument
38 return f(el, policy, diag); in wrapper_three()
41 void XmlNodeAction::Action(XmlNodeAction::ActionFunc f) { in Action() argument
42 actions_.emplace_back(std::bind(wrapper_one, std::move(f), std::placeholders::_1, in Action()
46 void XmlNodeAction::Action(XmlNodeAction::ActionFuncWithDiag f) { in Action() argument
47 actions_.emplace_back(std::bind(wrapper_two, std::move(f), std::placeholders::_1, in Action()
51 void XmlNodeAction::Action(XmlNodeAction::ActionFuncWithPolicyAndDiag f) { in Action() argument
52 actions_.emplace_back(std::bind(wrapper_three, std::move(f), std::placeholders::_1, in Action()