Lines Matching full:operator
45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y; }
70 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x % __y; }
75 _Tp operator()(const _Tp& __x) const { return -__x; }
80 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x && __y; }
85 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x || __y; }
90 bool operator()(const _Tp& __x) const { return !__x; }
147 bool operator()(_ArgParamType __x) const {
176 bool operator()(_FstArgParamType __x, _SndArgParamType __y) const {
208 result_type operator()(_ConstArgParamType __x) const
211 result_type operator()(_ArgParamType __x) const
243 result_type operator()(_ConstArgParamType __x) const
246 result_type operator()(_ArgParamType __x) const
278 result_type operator()(_ArgParamType __x) const {
309 result_type operator()(_ArgParamType __x) const {
346 const result_type& operator()() const { return _M_val; }
394 _STLP_UINT32_T operator()(_STLP_UINT32_T __limit) {