Lines Matching defs:f_
349 UnaryOperateOnFirst(const UnaryOp& f) : f_(f) {
353 return f_(p.first);
357 UnaryOp f_;
372 UnaryOperateOnSecond(const UnaryOp& f) : f_(f) {
376 return f_(p.second);
380 UnaryOp f_;
395 BinaryOperateOnFirst(const BinaryOp& f) : f_(f) {
400 return f_(p1.first, p2.first);
404 BinaryOp f_;
419 BinaryOperateOnSecond(const BinaryOp& f) : f_(f) {
424 return f_(p1.second, p2.second);
428 BinaryOp f_;