/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/unordered_iterator/ |
point_const_iterator.hpp | 92 operator->() const 100 operator*() const 108 operator==(const point_iterator_& other) const 113 operator==(const point_const_iterator_& other) const 118 operator!=(const point_iterator_& other) const 123 operator!=(const point_const_iterator_& other) const
|
point_iterator.hpp | 81 operator->() const 89 operator*() const 97 operator==(const point_iterator_& other) const 102 operator==(const point_const_iterator_& other) const 107 operator!=(const point_iterator_& other) const 112 operator!=(const point_const_iterator_& other) const
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/ |
pointer.h | 61 * 4) An operator<() to support pointer comparison. 62 * 5) An operator==() to support pointer comparison. 83 operator<(const _Std_pointer_impl& __rarg) const 87 operator==(const _Std_pointer_impl& __rarg) const 135 operator<(const _Relative_pointer_impl& __rarg) const 140 operator==(const _Relative_pointer_impl& __rarg) const 187 operator<(const _Relative_pointer_impl& __rarg) const 192 operator==(const _Relative_pointer_impl& __rarg) const 318 // Assignment operator 320 operator=(const _Pointer_adapter& __arg) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stl_iterator.h | 160 operator*() const 172 operator->() const 173 { return &(operator*()); } 181 operator++() 193 operator++(int) 206 operator--() 218 operator--(int) 231 operator+(difference_type __n) const 241 operator+=(difference_type __n) 253 operator-(difference_type __n) cons [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/unordered_iterator/ |
point_const_iterator.hpp | 92 operator->() const 100 operator*() const 108 operator==(const point_iterator_& other) const 113 operator==(const point_const_iterator_& other) const 118 operator!=(const point_iterator_& other) const 123 operator!=(const point_const_iterator_& other) const
|
point_iterator.hpp | 81 operator->() const 89 operator*() const 97 operator==(const point_iterator_& other) const 102 operator==(const point_const_iterator_& other) const 107 operator!=(const point_iterator_& other) const 112 operator!=(const point_const_iterator_& other) const
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/ |
pointer.h | 62 * 4) An operator<() to support pointer comparison. 63 * 5) An operator==() to support pointer comparison. 84 operator<(const _Std_pointer_impl& __rarg) const 88 operator==(const _Std_pointer_impl& __rarg) const 136 operator<(const _Relative_pointer_impl& __rarg) const 141 operator==(const _Relative_pointer_impl& __rarg) const 188 operator<(const _Relative_pointer_impl& __rarg) const 193 operator==(const _Relative_pointer_impl& __rarg) const 319 // Assignment operator 321 operator=(const _Pointer_adapter& __arg) [all...] |
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/ |
RangeManip.h | 31 Range& operator=(const Range& r) { 37 bool operator ==(const Range& r) const { 40 bool operator !=(const Range& r) const {return !((*this) == r);}; 60 Range& operator[](unsigned int i){return list[i];};
|
SmartPtr.h | 86 T* operator->() const { 90 T& operator*() const { 95 bool operator <(const SmartPtr<T>& t1) const { 99 SmartPtr<T,threadSafe>& operator=(const SmartPtr<T,false>& rhs) 114 SmartPtr<T,threadSafe>& operator=(SmartPtr<T,true>& rhs)
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
PassOwnPtr.h | 61 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; } 62 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; } 64 bool operator!() const { return !m_ptr; } 66 // This conversion operator allows implicit conversion to bool but not to other integer types. 68 operator UnspecifiedBoolType() const { return m_ptr ? &PassOwnPtr::m_ptr : 0; } 77 PassOwnPtr& operator=(const PassOwnPtr&) { COMPILE_ASSERT(!sizeof(T*), PassOwnPtr_should_never_be_assigned_to); return *this; } 81 template<typename U> bool operator==(const PassOwnPtr<U>&) { COMPILE_ASSERT(!sizeof(U*), OwnPtrs_should_never_be_equal); return false; } 82 template<typename U> bool operator!=(const PassOwnPtr<U>&) { COMPILE_ASSERT(!sizeof(U*), OwnPtrs_should_never_be_equal); return false; } 83 template<typename U> bool operator==(const OwnPtr<U>&) { COMPILE_ASSERT(!sizeof(U*), OwnPtrs_should_never_be_equal); return false; } 84 template<typename U> bool operator!=(const OwnPtr<U>&) { COMPILE_ASSERT(!sizeof(U*), OwnPtrs_should_never_be_equal); return false; [all...] |
PassRefPtr.h | 78 T& operator*() const { return *m_ptr; } 79 T* operator->() const { return m_ptr; } 81 bool operator!() const { return !m_ptr; } 83 // This conversion operator allows implicit conversion to bool but not to other integer types. 85 operator UnspecifiedBoolType() const { return m_ptr ? &PassRefPtr::m_ptr : 0; } 93 PassRefPtr& operator=(const PassRefPtr&) { COMPILE_ASSERT(!sizeof(T*), PassRefPtr_should_never_be_assigned_to); return *this; } 112 template<typename T, typename U> inline bool operator==(const PassRefPtr<T>& a, const PassRefPtr<U>& b) 117 template<typename T, typename U> inline bool operator==(const PassRefPtr<T>& a, const RefPtr<U>& b) 122 template<typename T, typename U> inline bool operator==(const RefPtr<T>& a, const PassRefPtr<U>& b) 127 template<typename T, typename U> inline bool operator==(const PassRefPtr<T>& a, U* b [all...] |
RefPtr.h | 56 T& operator*() const { return *m_ptr; } 57 ALWAYS_INLINE T* operator->() const { return m_ptr; } 59 bool operator!() const { return !m_ptr; } 61 // This conversion operator allows implicit conversion to bool but not to other integer types. 63 operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } 65 RefPtr& operator=(const RefPtr&); 66 RefPtr& operator=(T*); 67 RefPtr& operator=(const PassRefPtr<T>&); 69 RefPtr& operator=(std::nullptr_t) { clear(); return *this; } 71 template<typename U> RefPtr<T>& operator=(const RefPtr<U>&) [all...] |
/external/llvm/lib/Support/ |
BlockFrequency.cpp | 89 BlockFrequency &BlockFrequency::operator*=(const BranchProbability &Prob) { 95 BlockFrequency::operator*(const BranchProbability &Prob) const { 101 BlockFrequency &BlockFrequency::operator/=(const BranchProbability &Prob) { 106 BlockFrequency BlockFrequency::operator/(const BranchProbability &Prob) const { 112 BlockFrequency &BlockFrequency::operator+=(const BlockFrequency &Freq) { 124 BlockFrequency::operator+(const BlockFrequency &Prob) const { 145 raw_ostream &operator<<(raw_ostream &OS, const BlockFrequency &Freq) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
mock_object.hpp | 62 BOOST_ITEST_SCOPE( mock_object::operator op ); \ 68 self_type const& operator op() const \ 75 bool operator op() const \ 84 operator op( mock_object<i1,Base1> const& mo, \ 92 operator op( mock_object<i,Base> const& mo, T const& ) \ 99 operator op( T const&, mock_object<i,Base> const& mo ) \ 108 operator op( mock_object<i1,Base1> const&, \ 116 operator op( mock_object<i,Base> const&, T const& ) \ 123 operator op( T const&, mock_object<i,Base> const& ) \ 207 self_type const& operator =( mock_object const& ) cons [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
postypes.h | 137 operator streamoff() const { return _M_off; } 149 // The standard requires that this operator must be defined, but 154 operator+=(streamoff __off) 160 // The standard requires that this operator must be defined, but 165 operator-=(streamoff __off) 171 // The standard requires that this operator must be defined, but 172 // defines its semantics only in terms of operator-. In this 174 // argument to that copy using operator+= and then returns the 178 operator+(streamoff __off) const 185 // The standard requires that this operator must be defined, bu [all...] |
stl_queue.h | 100 operator==(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&); 104 operator<(const queue<_Tp1, _Seq1>&, const queue<_Tp1, _Seq1>&); 145 operator=(queue&& __q) 270 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) 288 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) 291 /// Based on operator== 294 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) 297 /// Based on operator< 300 operator>(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) 303 /// Based on operator< [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/ |
point_iterators.hpp | 138 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other) 146 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) 153 operator->() const 160 operator*() const 167 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const 171 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const 175 operator!=(const PB_DS_TREE_CONST_IT_C_DEC& other) const 179 operator!=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) const 183 operator++() 191 operator++(int [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
iterator.h | 64 // Pre-increment operator. 66 operator++() 73 // Post-increment operator. 75 operator++(int) 78 // Pre-decrement operator. 80 operator--() 87 // Post-decrement operator. 89 operator--(int) 93 operator Iterator2() const 97 operator=(const type& other [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
postypes.h | 139 operator streamoff() const { return _M_off; } 151 // The standard requires that this operator must be defined, but 156 operator+=(streamoff __off) 162 // The standard requires that this operator must be defined, but 167 operator-=(streamoff __off) 173 // The standard requires that this operator must be defined, but 174 // defines its semantics only in terms of operator-. In this 176 // argument to that copy using operator+= and then returns the 180 operator+(streamoff __off) const 187 // The standard requires that this operator must be defined, bu [all...] |
stl_pair.h | 146 operator=(const pair& __p) 154 operator=(pair&& __p) 163 operator=(const pair<_U1, _U2>& __p) 172 operator=(pair<_U1, _U2>&& __p) 201 operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 207 operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 211 /// Uses @c operator== to find the result. 214 operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 217 /// Uses @c operator< to find the result. 220 operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/ |
point_iterators.hpp | 138 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other) 146 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) 153 operator->() const 160 operator*() const 167 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const 171 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const 175 operator!=(const PB_DS_TREE_CONST_IT_C_DEC& other) const 179 operator!=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) const 183 operator++() 191 operator++(int [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
postypes.h | 139 operator streamoff() const { return _M_off; } 151 // The standard requires that this operator must be defined, but 156 operator+=(streamoff __off) 162 // The standard requires that this operator must be defined, but 167 operator-=(streamoff __off) 173 // The standard requires that this operator must be defined, but 174 // defines its semantics only in terms of operator-. In this 176 // argument to that copy using operator+= and then returns the 180 operator+(streamoff __off) const 187 // The standard requires that this operator must be defined, bu [all...] |
stl_pair.h | 146 operator=(const pair& __p) 154 operator=(pair&& __p) 163 operator=(const pair<_U1, _U2>& __p) 172 operator=(pair<_U1, _U2>&& __p) 201 operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 207 operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 211 /// Uses @c operator== to find the result. 214 operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 217 /// Uses @c operator< to find the result. 220 operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y [all...] |