/system/core/include/utils/ |
D | String16.h | 79 inline String16& operator=(const String16& other); variable 81 inline String16& operator+=(const String16& other); 82 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<(const char16_t* other) const; [all …]
|
D | String8.h | 96 inline String8& operator=(const String8& other); variable 97 inline String8& operator=(const char* other); variable 99 inline String8& operator+=(const String8& other); 100 inline String8 operator+(const String8& other) const; 102 inline String8& operator+=(const char* other); 103 inline String8 operator+(const char* other) const; 107 inline bool operator<(const String8& other) const; 108 inline bool operator<=(const String8& other) const; 109 inline bool operator==(const String8& other) const; 110 inline bool operator!=(const String8& other) const; [all …]
|
D | RefBase.h | 39 inline bool operator _op_ (const sp<T>& o) const { \ 42 inline bool operator _op_ (const T* o) const { \ 46 inline bool operator _op_ (const sp<U>& o) const { \ 50 inline bool operator _op_ (const U* o) const { \ 64 virtual void operator()(size_t i) const = 0; 155 RefBase& operator=(const RefBase& o); variable 235 wp& operator = (T* other); variable 236 wp& operator = (const wp<T>& other); variable 237 wp& operator = (const sp<T>& other); variable 239 template<typename U> wp& operator = (U* other); variable [all …]
|
D | StrongPointer.h | 34 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 { \ 74 sp& operator = (T* other); variable 75 sp& operator = (const sp<T>& other); variable 76 sp& operator = (sp<T>&& other); variable 78 template<typename U> sp& operator = (const sp<U>& other); variable [all …]
|
D | List.h | 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++() { // pre-increment 140 const _Iter operator++(int) { // post-increment 145 inline _Iter& operator--() { // pre-increment 149 const _Iter operator--(int) { // post-increment [all …]
|
D | BitSet.h | 132 inline bool operator== (const BitSet32& other) const { return value == other.value; } 133 inline bool operator!= (const BitSet32& other) const { return value != other.value; } 134 inline BitSet32 operator& (const BitSet32& other) const { 137 inline BitSet32& operator&= (const BitSet32& other) { 141 inline BitSet32 operator| (const BitSet32& other) const { 144 inline BitSet32& operator|= (const BitSet32& other) { 272 inline bool operator== (const BitSet64& other) const { return value == other.value; } 273 inline bool operator!= (const BitSet64& other) const { return value != other.value; } 274 inline BitSet64 operator& (const BitSet64& other) const { 277 inline BitSet64& operator&= (const BitSet64& other) { [all …]
|
D | BlobCache.h | 107 void operator=(const BlobCache&); variable 126 bool operator<(const Blob& rhs) const; 134 void operator=(const Blob&); variable 154 bool operator<(const CacheEntry& rhs) const; 155 const CacheEntry& operator=(const CacheEntry&); variable
|
D | Vector.h | 58 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const; variable 59 Vector<TYPE>& operator = (const Vector<TYPE>& rhs); variable 61 const Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const; variable 62 Vector<TYPE>& operator = (const SortedVector<TYPE>& rhs); variable 103 inline const TYPE& operator [] (size_t index) const; 244 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) { 245 VectorImpl::operator = (rhs); 250 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const { 251 VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)); 256 Vector<TYPE>& Vector<TYPE>::operator = (const SortedVector<TYPE>& rhs) { [all …]
|
D | SortedVector.h | 51 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const; variable 52 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs); variable 96 inline const TYPE& operator [] (size_t index) const; 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_t index) const { 197 return operator[](index);
|
/system/core/include/log/ |
D | log_read.h | 68 bool operator== (const timespec &T) const 73 bool operator!= (const timespec &T) const 77 bool operator< (const timespec &T) const 83 bool operator>= (const timespec &T) const 87 bool operator> (const timespec &T) const 93 bool operator<= (const timespec &T) const 97 log_time operator-= (const timespec &T); 98 log_time operator- (const timespec &T) const 103 log_time operator+= (const timespec &T); 104 log_time operator+ (const timespec &T) const [all …]
|
D | logger.h | 106 bool operator== (const log_msg &T) const 110 bool operator!= (const log_msg &T) const 114 bool operator< (const log_msg &T) const 120 bool operator>= (const log_msg &T) const 124 bool operator> (const log_msg &T) const 130 bool operator<= (const log_msg &T) const
|
/system/core/libpixelflinger/codeflinger/tinyutils/ |
D | smartpointer.h | 31 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); variable 64 sp& operator = (const sp<T>& other); variable 66 template<typename U> sp& operator = (const sp<U>& other); variable 67 template<typename U> sp& operator = (U* other); variable 74 inline T& operator* () const { return *m_ptr; } 75 inline T* operator-> () const { return m_ptr; } [all …]
|
/system/core/include/sysutils/ |
D | List.h | 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++() { // pre-increment 141 const _Iter operator++(int) { // post-increment 146 inline _Iter& operator--() { // pre-increment 150 const _Iter operator--(int) { // post-increment [all …]
|
/system/keymaster/ |
D | List.h | 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++() { // pre-increment 140 const _Iter operator++(int) { // post-increment 145 inline _Iter& operator--() { // pre-increment 149 const _Iter operator--(int) { // post-increment [all …]
|
/system/bt/service/common/bluetooth/ |
D | uuid.h | 79 bool operator<(const UUID& rhs) const; 80 bool operator==(const UUID& rhs) const; 81 inline bool operator!=(const UUID& rhs) const { 103 std::size_t operator()(const bluetooth::UUID& key) const {
|
D | gatt_identifier.h | 62 GattIdentifier& operator=(const GattIdentifier& other); variable 67 bool operator==(const GattIdentifier& rhs) const; 68 bool operator!=(const GattIdentifier& rhs) const; 121 std::size_t operator()(const bluetooth::GattIdentifier& key) const {
|
D | advertise_data.h | 68 bool operator==(const AdvertiseData& rhs) const; 71 AdvertiseData& operator=(const AdvertiseData& other); variable
|
/system/security/keystore-engine/ |
D | methods.h | 33 void operator()(DSA* p) const { in operator() function 40 void operator()(EC_KEY* p) const { in operator() function 47 void operator()(RSA* p) const { in operator() function
|
/system/core/base/include/android-base/ |
D | unique_fd.h | 61 unique_fd_impl& operator=(unique_fd_impl&& s) { 78 operator int() const { return get(); } 90 void operator=(const unique_fd_impl&); variable
|
/system/netd/server/binder/android/net/ |
D | UidRange.h | 51 friend bool operator<(const UidRange& lhs, const UidRange& rhs) { 55 friend bool operator==(const UidRange& lhs, const UidRange& rhs) { 59 friend bool operator!=(const UidRange& lhs, const UidRange& rhs) {
|
/system/core/libmemunreachable/ |
D | Allocator.h | 49 Heap& operator=(const Heap&) = delete; variable 68 bool operator ==(const Heap& other) const { 71 bool operator !=(const Heap& other) const { 123 STLAllocator<T>& operator=(const STLAllocator<T>&) = default; variable 134 bool operator ==(const STLAllocator<U>& other) const { 138 inline bool operator !=(const STLAllocator<U>& other) const { 168 Allocator<T>& operator=(const Allocator<T>&) = default; variable
|
/system/security/keystore/ |
D | keystore_utils.h | 49 void operator()(EVP_PKEY* p) const { EVP_PKEY_free(p); } in operator() function 54 void operator()(PKCS8_PRIV_KEY_INFO* p) const { PKCS8_PRIV_KEY_INFO_free(p); } in operator() function
|
/system/vold/ |
D | AutoCloseFD.h | 44 AutoCloseFD& operator=(const AutoCloseFD&) = delete; variable 45 explicit operator bool() {return fd != -1;}
|
/system/update_engine/payload_consumer/ |
D | install_plan.h | 44 bool operator==(const InstallPlan& that) const; 45 bool operator!=(const InstallPlan& that) const; 80 bool operator==(const Partition& that) const;
|
/system/tools/aidl/tests/ |
D | simple_parcelable.h | 53 friend bool operator==(const SimpleParcelable& lhs, 57 friend bool operator!=(const SimpleParcelable& lhs,
|