Searched defs:operator (Results 1 - 25 of 34) sorted by relevance

12

/system/core/include/utils/
H A DString16.h81 inline String16& operator=(const String16& other);
83 inline String16& operator+=(const String16& other);
84 inline String16 operator+(const String16& other) const;
105 inline bool operator<(const String16& other) const;
106 inline bool operator<=(const String16& other) const;
107 inline bool operator==(const String16& other) const;
108 inline bool operator!=(const String16& other) const;
109 inline bool operator>=(const String16& other) const;
110 inline bool operator>(const String16& other) const;
112 inline bool operator<(cons
[all...]
H A DString8.h98 inline String8& operator=(const String8& other);
99 inline String8& operator=(const char* other);
101 inline String8& operator+=(const String8& other);
102 inline String8 operator+(const String8& other) const;
104 inline String8& operator+=(const char* other);
105 inline String8 operator+(const char* other) const;
109 inline bool operator<(const String8& other) const;
110 inline bool operator<=(const String8& other) const;
111 inline bool operator==(const String8& other) const;
112 inline bool operator!
[all...]
H A DBitSet.h102 inline bool operator== (const BitSet32& other) const { return value == other.value; }
103 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
104 inline BitSet32 operator& (const BitSet32& other) const {
107 inline BitSet32& operator&= (const BitSet32& other) {
111 inline BitSet32 operator| (const BitSet32& other) const {
114 inline BitSet32& operator|= (const BitSet32& other) {
H A DStrongPointer.h34 inline bool operator _op_ (const sp<T>& o) const { \
37 inline bool operator _op_ (const T* o) const { \
41 inline bool operator _op_ (const sp<U>& o) const { \
45 inline bool operator _op_ (const U* o) const { \
48 inline bool operator _op_ (const wp<T>& o) const { \
52 inline bool operator _op_ (const wp<U>& o) const { \
72 sp& operator = (T* other);
73 sp& operator = (const sp<T>& other);
75 template<typename U> sp& operator = (const sp<U>& other);
76 template<typename U> sp& operator
[all...]
H A DFunctor.h28 virtual status_t operator ()(int what, void* data) { return NO_ERROR; }
H A DUniquePtr.h35 void operator()(T* p) const {
44 void operator()(T* p) const {
69 T& operator*() const { return *mPtr; }
70 T* operator->() const { return mPtr; }
96 template <typename T2> bool operator==(const UniquePtr<T2>& p) const;
97 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const;
101 void operator=(const UniquePtr&);
105 // operator* and operator-> but adds operator[]
[all...]
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
38 * Objects added to the list are copied using the assignment operator,
108 * Dereference operator. Used to get at the juicy insides.
110 _Type& operator*() const { return mpNode->getRef(); }
111 _Type* operator->() const { return &(mpNode->getRef()); }
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
126 inline bool operator==(const OTHER& right) const {
130 inline bool operator!=(const OTHER& right) const {
136 inline _Iter& operator
[all...]
H A DSortedVector.h50 /*! copy operator */
51 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
52 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
96 inline const TYPE& operator [] (size_t index) const;
97 //! alternate name for operator []
165 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
166 SortedVectorImpl::operator = (rhs);
171 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
172 SortedVectorImpl::operator = (rhs);
188 const TYPE& SortedVector<TYPE>::operator[](size_
[all...]
H A DVector.h57 /*! copy operator */
58 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
59 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
61 const Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
62 Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
103 inline const TYPE& operator [] (size_t index) const;
104 //! alternate name for operator []
244 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) {
245 VectorImpl::operator = (rhs);
250 const Vector<TYPE>& Vector<TYPE>::operator
[all...]
H A DBasicHashtable.h160 * bool operator==(const TKey& other) const; // return true if equal
161 * bool operator!=(const TKey& other) const; // return true if unequal
197 inline BasicHashtable<TKey, TEntry>& operator =(const BasicHashtable<TKey, TEntry> & other) {
H A DTypeHelpers.h237 inline bool operator < (const key_value_pair_t& o) const {
/system/core/libutils/
H A DCallStack.cpp48 CallStack& CallStack::operator = (const CallStack& rhs) {
56 bool CallStack::operator == (const CallStack& rhs) const {
62 bool CallStack::operator != (const CallStack& rhs) const {
63 return !operator == (rhs);
66 bool CallStack::operator < (const CallStack& rhs) const {
72 bool CallStack::operator >= (const CallStack& rhs) const {
73 return !operator < (rhs);
76 bool CallStack::operator > (const CallStack& rhs) const {
82 bool CallStack::operator <= (const CallStack& rhs) const {
83 return !operator > (rh
[all...]
H A DBlobCache.cpp311 bool BlobCache::Blob::operator<(const Blob& rhs) const {
340 bool BlobCache::CacheEntry::operator<(const CacheEntry& rhs) const {
344 const BlobCache::CacheEntry& BlobCache::CacheEntry::operator=(const CacheEntry& rhs) {
/system/core/libpixelflinger/codeflinger/tinyutils/
H A Dsmartpointer.h31 inline bool operator _op_ (const sp<T>& o) const { \
34 inline bool operator _op_ (const T* o) const { \
38 inline bool operator _op_ (const sp<U>& o) const { \
42 inline bool operator _op_ (const U* o) const { \
63 sp& operator = (T* other);
64 sp& operator = (const sp<T>& other);
66 template<typename U> sp& operator = (const sp<U>& other);
67 template<typename U> sp& operator = (U* other);
74 inline T& operator* () const { return *m_ptr; }
75 inline T* operator
[all...]
H A DSortedVector.h47 /*! copy operator */
48 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
49 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
93 inline const TYPE& operator [] (size_t index) const;
94 //! alternate name for operator []
98 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
162 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) {
163 SortedVectorImpl::operator = (rhs);
168 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const {
169 SortedVectorImpl::operator
[all...]
H A DVector.h55 /*! copy operator */
56 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
57 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
92 inline const TYPE& operator [] (size_t index) const;
93 //! alternate name for operator []
97 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
198 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) {
199 VectorImpl::operator = (rhs);
204 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const {
205 VectorImpl::operator
[all...]
H A DTypeHelpers.h227 inline bool operator < (const key_value_pair_t& o) const {
/system/security/keystore-engine/
H A Dmethods.h33 void operator()(DSA* p) const {
40 void operator()(EC_KEY* p) const {
47 void operator()(RSA* p) const {
H A Ddsa_meth.cpp44 void operator()(DSA_SIG* p) const {
H A Decdsa_meth.cpp48 void operator()(ECDSA_SIG* p) const {
H A Deng_keystore.cpp79 void operator()(ENGINE* p) const {
86 void operator()(EVP_PKEY* p) const {
/system/core/include/sysutils/
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
39 * Objects added to the list are copied using the assignment operator,
109 * Dereference operator. Used to get at the juicy insides.
111 _Type& operator*() const { return mpNode->getRef(); }
112 _Type* operator->() const { return &(mpNode->getRef()); }
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
127 inline bool operator==(const OTHER& right) const {
131 inline bool operator!=(const OTHER& right) const {
137 inline _Iter& operator
[all...]
/system/netd/
H A DList.h21 // Objects are copied into the list with the '=' operator or with copy-
39 * Objects added to the list are copied using the assignment operator,
109 * Dereference operator. Used to get at the juicy insides.
111 _Type& operator*() const { return mpNode->getRef(); }
112 _Type* operator->() const { return &(mpNode->getRef()); }
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
127 inline bool operator==(const OTHER& right) const {
131 inline bool operator!=(const OTHER& right) const {
137 inline _Iter& operator
[all...]
/system/core/libutils/tests/
H A DLruCache_test.cpp43 bool operator ==(const ComplexKey& other) const {
47 bool operator !=(const ComplexKey& other) const {
86 void operator()(SimpleKey& k, StringValue& v) {
H A DBasicHashtable_test.cpp46 bool operator ==(const ComplexKey& other) const {
50 bool operator !=(const ComplexKey& other) const {
511 // operator= acquires shared reference
536 // operator= acquires shared reference, destroys unshared contents

Completed in 321 milliseconds

12