/system/core/libutils/include/utils/ |
D | String8.h | 90 inline String8& operator=(const String8& other); variable 91 inline String8& operator=(const char* other); variable 93 inline String8& operator+=(const String8& other); 94 inline String8 operator+(const String8& other) const; 96 inline String8& operator+=(const char* other); 97 inline String8 operator+(const char* other) const; 101 inline bool operator<(const String8& other) const; 102 inline bool operator<=(const String8& other) const; 103 inline bool operator==(const String8& other) const; 104 inline bool operator!=(const String8& other) const; [all …]
|
D | String16.h | 71 inline String16& operator=(const String16& other); variable 73 inline String16& operator+=(const String16& other); 74 inline String16 operator+(const String16& other) const; 97 inline bool operator<(const String16& other) const; 98 inline bool operator<=(const String16& other) const; 99 inline bool operator==(const String16& other) const; 100 inline bool operator!=(const String16& other) const; 101 inline bool operator>=(const String16& other) const; 102 inline bool operator>(const String16& other) const; 104 inline bool operator<(const char16_t* other) const; [all …]
|
/system/bt/packet/base/ |
D | iterator.h | 36 Iterator operator+(size_t offset); 37 Iterator& operator+=(size_t offset); 38 Iterator operator++(int); 39 Iterator& operator++(); 41 Iterator operator-(size_t offset); 42 int operator-(const Iterator& itr); 43 Iterator& operator-=(size_t offset); 44 Iterator operator--(int); 45 Iterator& operator--(); 47 Iterator& operator=(const Iterator& itr); variable [all …]
|
/system/bt/gd/packet/ |
D | iterator.h | 39 Iterator operator+(int offset); 40 Iterator& operator+=(int offset); 41 Iterator operator++(int); 42 Iterator& operator++(); 44 Iterator operator-(int offset); 45 int operator-(Iterator& itr); 46 Iterator& operator-=(int offset); 47 Iterator operator--(int); 48 Iterator& operator--(); 50 Iterator& operator=(const Iterator& itr); variable [all …]
|
/system/bt/gd/l2cap/ |
D | signal_id.h | 38 friend bool operator==(const SignalId& lhs, const SignalId& rhs); 39 friend bool operator!=(const SignalId& lhs, const SignalId& rhs); 41 struct SignalId& operator++(); // Prefix increment operator. 42 struct SignalId operator++(int); // Postfix increment operator. 43 struct SignalId& operator--(); // Prefix decrement operator. 44 struct SignalId operator--(int); // Postfix decrement operator. 53 inline bool operator==(const SignalId& lhs, const SignalId& rhs) { 57 inline bool operator!=(const SignalId& lhs, const SignalId& rhs) { 61 inline struct SignalId& SignalId::operator++() { 67 inline struct SignalId SignalId::operator++(int) { [all …]
|
/system/security/keystore/include/keystore/ |
D | keystore_return_types.h | 51 inline KeyStoreServiceReturnCode& operator=(const ErrorCode& errorCode) { 55 inline KeyStoreServiceReturnCode& operator=(const ResponseCode& errorCode) { 59 inline KeyStoreServiceReturnCode& operator=(const KeyStoreServiceReturnCode& errorCode) { 72 inline bool operator==(const ResponseCode& rhs) const { 77 inline bool operator==(const ErrorCode& rhs) const { 82 inline bool operator!=(const ResponseCode& rhs) const { return !(*this == rhs); } 83 inline bool operator!=(const ErrorCode& rhs) const { return !(*this == rhs); } 89 inline bool operator==(const ResponseCode& lhs, const KeyStoreServiceReturnCode& rhs) { 92 inline bool operator==(const ErrorCode& lhs, const KeyStoreServiceReturnCode& rhs) { 95 inline bool operator!=(const ResponseCode& lhs, const KeyStoreServiceReturnCode& rhs) { [all …]
|
D | utils.h | 44 SharedNullableIterator& operator++() { 48 SharedNullableIterator operator++(int) { 53 T& operator*() const { return **cur_; } 55 T* operator->() const { return &**cur_; } 57 bool operator==(const SharedNullableIterator& other) const { 60 bool operator!=(const SharedNullableIterator& other) const { return !(*this == other); } 62 SharedNullableIterator& operator=(const SharedNullableIterator&) = default; variable 63 SharedNullableIterator& operator=(SharedNullableIterator&&) noexcept = default; variable
|
/system/tools/hidl/host_utils/include/hidl-util/ |
D | Formatter.h | 33 WrappedOutput& operator<<(const std::string& str); 151 Formatter &operator<<(const std::string &out); 153 Formatter &operator<<(char c); 154 Formatter &operator<<(signed char c); 155 Formatter &operator<<(unsigned char c); 157 Formatter &operator<<(short c); 158 Formatter &operator<<(unsigned short c); 159 Formatter &operator<<(int c); 160 Formatter &operator<<(unsigned int c); 161 Formatter &operator<<(long c); [all …]
|
/system/core/liblog/include/log/ |
D | log_time.h | 57 bool operator==(const timespec& T) const { 61 bool operator!=(const timespec& T) const { 64 bool operator<(const timespec& T) const { 69 bool operator>=(const timespec& T) const { 72 bool operator>(const timespec& T) const { 77 bool operator<=(const timespec& T) const { 82 bool operator==(const log_time& T) const { 85 bool operator!=(const log_time& T) const { 88 bool operator<(const log_time& T) const { 92 bool operator>=(const log_time& T) const { [all …]
|
/system/chre/util/include/chre/util/ |
D | optional.h | 101 Optional<ObjectType>& operator=(ObjectType&& other); variable 111 Optional<ObjectType>& operator=(Optional<ObjectType>&& other); variable 120 Optional<ObjectType>& operator=(const ObjectType& other); variable 128 Optional<ObjectType>& operator=(const Optional<ObjectType>& other); variable 137 ObjectType& operator*(); 146 const ObjectType& operator*() const; 155 ObjectType *operator->(); 164 const ObjectType *operator->() const;
|
D | time.h | 121 constexpr bool operator==(const Milliseconds& millis) const; 214 constexpr bool operator==(const Nanoseconds& nanos) const; 221 constexpr bool operator!=(const Nanoseconds& nanos) const; 234 constexpr Nanoseconds operator+(const Seconds& secs, const Nanoseconds& nanos); 243 constexpr Nanoseconds operator+(const Nanoseconds& nanos_a, 253 constexpr Nanoseconds operator-(const Nanoseconds& nanos_a, 263 constexpr bool operator>=(const Nanoseconds& nanos_a, 273 constexpr bool operator<=(const Nanoseconds& nanos_a, 283 constexpr bool operator<(const Nanoseconds& nanos_a, 293 constexpr bool operator>(const Nanoseconds& nanos_a,
|
D | unique_ptr.h | 118 ObjectType *operator->() const; 123 ObjectType& operator*() const; 129 ObjectType& operator[](size_t index) const; 138 UniquePtr<ObjectType>& operator=(UniquePtr<ObjectType>&& other); variable 148 bool operator==(const UniquePtr<ObjectType> &other) const; 158 bool operator!=(const UniquePtr<ObjectType> &other) const;
|
/system/bt/gd/storage/ |
D | adapter_config.h | 34 AdapterConfig& operator=(AdapterConfig&& other) noexcept = default; variable 38 AdapterConfig& operator=(const AdapterConfig& other) noexcept = default; variable 41 bool operator==(const AdapterConfig& other) const { 44 bool operator!=(const AdapterConfig& other) const { 47 bool operator<(const AdapterConfig& other) const { 50 bool operator>(const AdapterConfig& rhs) const { 53 bool operator<=(const AdapterConfig& rhs) const { 56 bool operator>=(const AdapterConfig& rhs) const {
|
D | le_device.h | 36 LeDevice& operator=(LeDevice&& other) noexcept = default; variable 40 LeDevice& operator=(const LeDevice& other) noexcept = default; variable 43 bool operator==(const LeDevice& other) const { 46 bool operator!=(const LeDevice& other) const { 49 bool operator<(const LeDevice& other) const { 52 bool operator>(const LeDevice& rhs) const { 55 bool operator<=(const LeDevice& rhs) const { 58 bool operator>=(const LeDevice& rhs) const { 93 std::size_t operator()(const bluetooth::storage::LeDevice& val) const noexcept {
|
D | classic_device.h | 38 ClassicDevice& operator=(ClassicDevice&& other) noexcept = default; variable 42 ClassicDevice& operator=(const ClassicDevice& other) noexcept = default; variable 45 bool operator==(const ClassicDevice& other) const { 48 bool operator!=(const ClassicDevice& other) const { 51 bool operator<(const ClassicDevice& other) const { 54 bool operator>(const ClassicDevice& rhs) const { 57 bool operator<=(const ClassicDevice& rhs) const { 60 bool operator>=(const ClassicDevice& rhs) const { 101 std::size_t operator()(const bluetooth::storage::ClassicDevice& val) const noexcept {
|
/system/libvintf/include/vintf/ |
D | parse_string.h | 31 std::ostream &operator<<(std::ostream &os, HalFormat hf); 32 std::ostream &operator<<(std::ostream &os, Transport tr); 33 std::ostream &operator<<(std::ostream &os, Arch ar); 34 std::ostream &operator<<(std::ostream &os, KernelConfigType il); 35 std::ostream &operator<<(std::ostream &os, Tristate tr); 36 std::ostream &operator<<(std::ostream &os, SchemaType ksv); 37 std::ostream& operator<<(std::ostream& os, XmlSchemaFormat f); 38 std::ostream& operator<<(std::ostream& os, Level l); 39 std::ostream& operator<<(std::ostream& os, KernelSepolicyVersion v); 40 std::ostream &operator<<(std::ostream &os, const ManifestHal &hal); [all …]
|
D | Version.h | 38 inline bool operator==(const Version &other) const { 41 inline bool operator!=(const Version &other) const { 44 inline bool operator<(const Version &other) const { 51 inline bool operator>(const Version &other) const { 54 inline bool operator<=(const Version &other) const { 57 inline bool operator>=(const Version &other) const { 79 inline bool operator==(const KernelVersion &other) const { 84 inline bool operator!=(const KernelVersion &other) const { 88 inline bool operator<(const KernelVersion& other) 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/bt/types/ |
D | raw_address.h | 35 bool operator<(const RawAddress& rhs) const { 38 bool operator==(const RawAddress& rhs) const { 41 bool operator>(const RawAddress& rhs) const { return (rhs < *this); } 42 bool operator<=(const RawAddress& rhs) const { return !(*this > rhs); } 43 bool operator>=(const RawAddress& rhs) const { return !(*this < rhs); } 44 bool operator!=(const RawAddress& rhs) const { return !(*this == rhs); } 65 inline std::ostream& operator<<(std::ostream& os, const RawAddress& a) { 72 std::size_t operator()(const RawAddress& val) const {
|
/system/netd/libnetdutils/include/netdutils/ |
D | InternetAddresses.h | 47 friend bool operator==(const compact_ipdata& a, const compact_ipdata& b) { 73 friend bool operator!=(const compact_ipdata& a, const compact_ipdata& b) { return !(a == b); } 77 friend bool operator<(const compact_ipdata& a, const compact_ipdata& b) { 108 void operator()(struct addrinfo* p) const { in operator() function 152 IPAddress& operator=(const IPAddress&) = default; variable 153 IPAddress& operator=(IPAddress&&) = default; variable 160 friend std::ostream& operator<<(std::ostream& os, const IPAddress& ip) { 164 friend bool operator==(const IPAddress& a, const IPAddress& b) { return (a.mData == b.mData); } 165 friend bool operator!=(const IPAddress& a, const IPAddress& b) { return (a.mData != b.mData); } 166 friend bool operator<(const IPAddress& a, const IPAddress& b) { return (a.mData < b.mData); } [all …]
|
/system/libhidl/base/include/hidl/ |
D | HidlSupport.h | 110 hidl_handle &operator=(const hidl_handle &other); member 112 hidl_handle &operator=(const native_handle_t *native_handle); member 114 hidl_handle &operator=(hidl_handle &&other) noexcept; member 118 const native_handle_t* operator->() const; 121 operator const native_handle_t *() const; 158 hidl_string &operator=(const hidl_string &); member 160 hidl_string &operator=(const char *s); member 162 hidl_string &operator=(const std::string &); member 164 hidl_string &operator=(hidl_string &&other) noexcept; member 166 operator std::string() const; [all …]
|
/system/bt/gd/packet/parser/test/ |
D | six_bytes.h | 48 bool operator<(const SixBytes& rhs) const { 51 bool operator==(const SixBytes& rhs) const { 54 bool operator>(const SixBytes& rhs) const { 57 bool operator<=(const SixBytes& rhs) const { 60 bool operator>=(const SixBytes& rhs) const { 63 bool operator!=(const SixBytes& rhs) const {
|
/system/keymaster/include/keymaster/ |
D | UniquePtr.h | 29 void operator()(T* p) const { in operator() function 38 void operator()(T* p) const { 73 UniquePtr& operator=(UniquePtr && other) { 86 T& operator*() const { return *mPtr; } 87 T* operator->() const { return mPtr; } 91 operator bool() const { return mPtr != nullptr; } 116 template <typename T2> bool operator==(const UniquePtr<T2>& p) const; 117 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const; 120 UniquePtr & operator=(const UniquePtr&) = delete; 137 UniquePtr& operator=(UniquePtr && other) { [all …]
|
/system/gatekeeper/include/gatekeeper/ |
D | UniquePtr.h | 29 void operator()(T* p) const { in operator() function 38 void operator()(T* p) const { 73 UniquePtr& operator=(UniquePtr && other) { 86 T& operator*() const { return *mPtr; } 87 T* operator->() const { return mPtr; } 91 operator bool() const { return mPtr != nullptr; } 116 template <typename T2> bool operator==(const UniquePtr<T2>& p) const; 117 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const; 120 UniquePtr & operator=(const UniquePtr&) = delete; 137 UniquePtr& operator=(UniquePtr && other) { [all …]
|
/system/teeui/libteeui/include/teeui/ |
D | utf8range.h | 36 UTF8Range& operator=(UTF8Range&&) = default; variable 37 UTF8Range& operator=(const UTF8Range&) = default; variable 82 Iter& operator=(const Iter& rhs) { 86 CharIterator operator*() const { return begin_; } 87 Iter& operator++() { 91 Iter operator++(int) { 96 bool operator==(const Iter& rhs) const { return begin_ == rhs.begin_; } 97 bool operator!=(const Iter& rhs) const { return !(*this == rhs); }
|