/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _function_adaptors.h | 71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); } in operator() function 84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } in operator() function 97 _Result operator ()(const _Tp* __p) const { return (__p->*_M_f)(); } in operator() function 110 _Result operator ()(const _Tp* __p, _Arg __x) const { in operator() function 124 _Result operator ()(_Tp& __p) const { return (__p.*_M_f)(); } in operator() function 137 _Result operator ()(_Tp& __p, _Arg __x) const { return (__p.*_M_f)(__x); } in operator() function 150 _Result operator ()(const _Tp& __p) const { return (__p.*_M_f)(); } in operator() function 163 _Result operator ()(const _Tp& __p, _Arg __x) const { return (__p.*_M_f)(__x); } in operator() function 195 _Result operator()(_Arg __x) const { return _M_f(__x); } in operator() function 208 _Result operator()(_Arg1 __x, _Arg2 __y) const { return _M_f(__x, __y); } in operator() function [all …]
|
D | _ctraits_fns.h | 37 bool operator()(const typename _Traits::char_type& __x, in operator() function 47 bool operator()(const typename _Traits::char_type& __x) const in operator() function 57 bool operator()(const typename _Traits::char_type& __x) const in operator() function 67 bool operator()(const typename _Traits::char_type& __x) const in operator() function
|
D | _function.h | 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; } in operator() function 50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; } in operator() function 55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; } in operator() function 60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; } in operator() function 65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y; } in operator() function 70 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x % __y; } in operator() function 75 _Tp operator()(const _Tp& __x) const { return -__x; } in operator() function 80 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x && __y; } in operator() function 85 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x || __y; } in operator() function 90 bool operator()(const _Tp& __x) const { return !__x; } in operator() function [all …]
|
D | _collate.h | 73 collate<char>& operator =(const collate<char>&); variable 109 collate<wchar_t>& operator = (const collate<wchar_t>&); variable 132 collate_byname<char>& operator =(const collate_byname<char>&); variable 155 collate_byname<wchar_t>& operator =(const collate_byname<wchar_t>&); variable
|
D | _function_base.h | 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; } in operator() function 79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; } in operator() function
|
D | _stdexcept_base.h | 71 __Named_exception& operator = (const __Named_exception&); variable
|
D | _locale.h | 95 void operator=(const facet&); variable 143 const locale& operator=(const locale&) _STLP_NOTHROW; variable 176 bool operator()(const basic_string<_CharT, _Traits, _Alloc>& __x, in operator() function 265 bool operator()(const basic_string<_CharT, _Traits, _Alloc>& __x, in operator() function
|
/ndk/tests/device/test-stlport/unit/ |
D | unary.h | 12 bool operator()(int n_) const { return(n_ % 2) == 1; } in operator() function 16 bool operator()(int n_) const { return n_ >= 0; } in operator() function 20 double operator()(double x_) const in operator() function
|
D | fadapter.h | 20 Result operator()() const { return ptr(); } in operator() function 21 Result operator()(__void_tag) const { return ptr(); } in operator() function 27 __void_tag operator()(const Arg1& x) const { return __void_tag(); } in operator() function 54 void operator() (Arg x) const { ptr(x); } in operator() function 72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); } in operator() function
|
D | fib.h | 14 Fibonacci::operator()() in operator() function
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | unary.h | 12 bool operator()(int n_) const { return(n_ % 2) == 1; } in operator() function 16 bool operator()(int n_) const { return n_ >= 0; } in operator() function 20 double operator()(double x_) const in operator() function
|
D | fadapter.h | 20 Result operator()() const { return ptr(); } in operator() function 21 Result operator()(__void_tag) const { return ptr(); } in operator() function 27 __void_tag operator()(const Arg1& x) const { return __void_tag(); } in operator() function 54 void operator() (Arg x) const { ptr(x); } in operator() function 72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); } in operator() function
|
D | fib.h | 14 Fibonacci::operator()() in operator() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/ |
D | test_func.h | 25 result_type operator() (const first_argument_type& x, second_argument_type& y) const in operator() function 27 result_type operator() (const first_argument_type& x, const second_argument_type& y) const in operator() function 29 result_type operator() (first_argument_type& x, const second_argument_type& y) const in operator() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/ |
D | deleter.h | 29 Deleter& operator=(const Deleter&); variable 32 Deleter& operator=(Deleter&); variable 79 void operator()(T* p) {delete p;} in operator() function 89 Deleter& operator=(const Deleter&); variable 92 Deleter& operator=(Deleter&); variable 122 void operator()(T* p) {delete [] p;} in operator() function 152 void operator()(T* p) {delete p;} in operator() function 169 void operator()(T* p) {delete [] p;} in operator() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/ |
D | NotConstructible.h | 9 NotConstructible& operator=(const NotConstructible&); variable
|
D | test_hash.h | 16 operator()(typename std::add_lvalue_reference<const typename C::argument_type>::type x) const in operator() function
|
D | test_compare.h | 19 operator()(typename std::add_lvalue_reference<const typename C::first_argument_type>::type x, in operator() function
|
D | DefaultOnly.h | 11 DefaultOnly& operator=(const DefaultOnly&); variable
|
D | MoveOnly.h | 12 MoveOnly& operator=(const MoveOnly&); variable
|
D | Emplaceable.h | 9 Emplaceable& operator=(const Emplaceable&); variable
|
/ndk/sources/cxx-stl/stlport/src/ |
D | message_facets.h | 49 void operator=(const _Catalog_locale_map&); member 108 _Catalog_nl_catd_map& operator =(const _Catalog_nl_catd_map&); variable 141 _Messages& operator=(const _Messages&); variable
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/ |
D | DefaultOnly.h | 11 DefaultOnly& operator=(const DefaultOnly&); variable
|
D | MoveOnly.h | 12 MoveOnly& operator=(const MoveOnly&); variable
|
/ndk/sources/third_party/googletest/googletest/samples/ |
D | sample2.h | 44 const MyString& operator=(const MyString& rhs); variable
|