/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ufunction.h | 278 class binary_compose : public unary_function<typename Operation2::argument_type, class in namespace:ustl 285 inline binary_compose (const Operation1& f, const Operation2& g, const Operation3& h) : m_f(f), m_g(g), m_h(h) {} function in class:ustl::binary_compose 293 /// Creates a \ref binary_compose object whose function c(x)=f(g(x),h(x)) 296 inline binary_compose<Operation1, Operation2, Operation3> 298 { return binary_compose<Operation1, Operation2, Operation3> (f, g, h); }
|
/external/stlport/stlport/stl/ |
_function.h | 258 // unary_compose and binary_compose (extensions, not part of the standard). 290 class binary_compose : class in inherits:unary_function 305 binary_compose(const _Operation1& __x, const _Operation2& __y, function in class:binary_compose 315 inline binary_compose<_Operation1, _Operation2, _Operation3> 318 return binary_compose<_Operation1,_Operation2,_Operation3>(__fn1, __fn2, __fn3);
|