Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/system/bt/gd/packet/
Diterator.h36 Iterator operator+(int offset);
37 Iterator& operator+=(int offset);
38 Iterator operator++(int);
39 Iterator& operator++();
41 Iterator operator-(int offset);
42 int operator-(Iterator& itr);
43 Iterator& operator-=(int offset);
44 Iterator operator--(int);
45 Iterator& operator--();
47 Iterator& operator=(const Iterator& itr); variable
[all …]
/system/bt/vendor_libs/test_vendor_lib/packets/
Diterator.h37 Iterator operator+(int offset);
38 Iterator& operator+=(int offset);
39 Iterator operator++(int);
40 Iterator& operator++();
42 Iterator operator-(int offset);
43 int operator-(Iterator& itr);
44 Iterator& operator-=(int offset);
45 Iterator operator--(int);
46 Iterator& operator--();
48 Iterator& operator=(const Iterator& itr); variable
[all …]
/system/core/libutils/include/utils/
DString16.h84 inline String16& operator=(const String16& other); variable
86 inline String16& operator+=(const String16& other);
87 inline String16 operator+(const String16& other) const;
110 inline bool operator<(const String16& other) const;
111 inline bool operator<=(const String16& other) const;
112 inline bool operator==(const String16& other) const;
113 inline bool operator!=(const String16& other) const;
114 inline bool operator>=(const String16& other) const;
115 inline bool operator>(const String16& other) const;
117 inline bool operator<(const char16_t* other) const;
[all …]
DString8.h105 inline String8& operator=(const String8& other); variable
106 inline String8& operator=(const char* other); variable
108 inline String8& operator+=(const String8& other);
109 inline String8 operator+(const String8& other) const;
111 inline String8& operator+=(const char* other);
112 inline String8 operator+(const char* other) const;
116 inline bool operator<(const String8& other) const;
117 inline bool operator<=(const String8& other) const;
118 inline bool operator==(const String8& other) const;
119 inline bool operator!=(const String8& other) const;
[all …]
DStrongPointer.h37 inline bool operator _op_ (const sp<U>& o) const { \
41 inline bool operator _op_ (const U* o) const { \
45 inline bool operator _op_ (const T* o) const { \
58 inline bool operator _op_ (const sp<U>& o) const { \
62 inline bool operator _op_ (const U* o) const { \
83 sp& operator = (T* other); variable
84 sp& operator = (const sp<T>& other); variable
85 sp& operator=(sp<T>&& other) noexcept; variable
87 template<typename U> sp& operator = (const sp<U>& other); variable
88 template<typename U> sp& operator = (sp<U>&& other); variable
[all …]
/system/bt/packet/base/
Diterator.h36 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/security/keystore/include/keystore/
Dkeystore_return_types.h53 inline KeyStoreServiceReturnCode& operator=(const ErrorCode& errorCode) {
57 inline KeyStoreServiceReturnCode& operator=(const ResponseCode& errorCode) {
61 inline KeyStoreServiceReturnCode& operator=(const KeyStoreServiceReturnCode& errorCode) {
74 inline bool operator==(const ResponseCode& rhs) const {
79 inline bool operator==(const ErrorCode& rhs) const {
84 inline bool operator!=(const ResponseCode& rhs) const { return !(*this == rhs); }
85 inline bool operator!=(const ErrorCode& rhs) const { return !(*this == rhs); }
91 inline bool operator==(const ResponseCode& lhs, const KeyStoreServiceReturnCode& rhs) {
94 inline bool operator==(const ErrorCode& lhs, const KeyStoreServiceReturnCode& rhs) {
97 inline bool operator!=(const ResponseCode& lhs, const KeyStoreServiceReturnCode& rhs) {
[all …]
Dutils.h44 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/core/liblog/include/log/
Dlog_time.h77 bool operator==(const timespec& T) const {
81 bool operator!=(const timespec& T) const {
84 bool operator<(const timespec& T) const {
89 bool operator>=(const timespec& T) const {
92 bool operator>(const timespec& T) const {
97 bool operator<=(const timespec& T) const {
101 log_time operator-=(const timespec& T);
102 log_time operator-(const timespec& T) const {
106 log_time operator+=(const timespec& T);
107 log_time operator+(const timespec& T) const {
[all …]
/system/tools/hidl/host_utils/include/hidl-util/
DFormatter.h113 Formatter &operator<<(const std::string &out);
115 Formatter &operator<<(char c);
116 Formatter &operator<<(signed char c);
117 Formatter &operator<<(unsigned char c);
119 Formatter &operator<<(short c);
120 Formatter &operator<<(unsigned short c);
121 Formatter &operator<<(int c);
122 Formatter &operator<<(unsigned int c);
123 Formatter &operator<<(long c);
124 Formatter &operator<<(unsigned long c);
[all …]
/system/chre/util/include/chre/util/
Doptional.h101 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;
Dtime.h121 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,
Dunique_ptr.h118 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/libvintf/include/vintf/
Dparse_string.h31 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 …]
DVersion.h38 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/netd/libnetdutils/include/netdutils/
DInternetAddresses.h47 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) {
142 IPAddress& operator=(const IPAddress&) = default; variable
143 IPAddress& operator=(IPAddress&&) = default; variable
150 friend std::ostream& operator<<(std::ostream& os, const IPAddress& ip) {
154 friend bool operator==(const IPAddress& a, const IPAddress& b) { return (a.mData == b.mData); }
155 friend bool operator!=(const IPAddress& a, const IPAddress& b) { return (a.mData != b.mData); }
156 friend bool operator<(const IPAddress& a, const IPAddress& b) { return (a.mData < b.mData); }
157 friend bool operator>(const IPAddress& a, const IPAddress& b) { return (b.mData < a.mData); }
[all …]
/system/core/libpixelflinger/codeflinger/tinyutils/
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); 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/libhidl/base/include/hidl/
DHidlSupport.h104 hidl_handle &operator=(const hidl_handle &other); member
106 hidl_handle &operator=(const native_handle_t *native_handle); member
108 hidl_handle &operator=(hidl_handle &&other) noexcept; member
112 const native_handle_t* operator->() const;
115 operator const native_handle_t *() const;
151 hidl_string &operator=(const hidl_string &); member
153 hidl_string &operator=(const char *s); member
155 hidl_string &operator=(const std::string &); member
157 hidl_string &operator=(hidl_string &&other) noexcept; member
159 operator std::string() const;
[all …]
/system/bt/types/
Draw_address.h33 bool operator<(const RawAddress& rhs) const {
36 bool operator==(const RawAddress& rhs) const {
39 bool operator>(const RawAddress& rhs) const { return (rhs < *this); }
40 bool operator<=(const RawAddress& rhs) const { return !(*this > rhs); }
41 bool operator>=(const RawAddress& rhs) const { return !(*this < rhs); }
42 bool operator!=(const RawAddress& rhs) const { return !(*this == rhs); }
63 inline std::ostream& operator<<(std::ostream& os, const RawAddress& a) {
/system/bt/gd/common/
Daddress.h35 bool operator<(const Address& rhs) const {
38 bool operator==(const Address& rhs) const {
41 bool operator>(const Address& rhs) const {
44 bool operator<=(const Address& rhs) const {
47 bool operator>=(const Address& rhs) const {
50 bool operator!=(const Address& rhs) const {
75 inline std::ostream& operator<<(std::ostream& os, const Address& a) {
/system/bt/vendor_libs/test_vendor_lib/types/
Daddress.h33 bool operator<(const Address& rhs) const {
36 bool operator==(const Address& rhs) const {
39 bool operator>(const Address& rhs) const {
42 bool operator<=(const Address& rhs) const {
45 bool operator>=(const Address& rhs) const {
48 bool operator!=(const Address& rhs) const {
73 inline std::ostream& operator<<(std::ostream& os, const Address& a) {
/system/gatekeeper/include/gatekeeper/
DUniquePtr.h29 void operator()(T* p) const { in operator() function
38 void operator()(T* p) const {
63 T& operator*() const { return *mPtr; }
64 T* operator->() const { return mPtr; }
90 template <typename T2> bool operator==(const UniquePtr<T2>& p) const;
91 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const;
95 void operator=(const UniquePtr&);
110 T& operator[](size_t i) const {
133 void operator=(const UniquePtr&);
/system/core/init/
Dresult.h92 inline std::ostream& operator<<(std::ostream& os, const ResultError& t) {
97 inline std::ostream& operator<<(std::ostream& os, ResultError&& t) {
108 Error&& operator<<(T&& t) {
113 Error&& operator<<(const ResultError& result_error) {
119 Error&& operator<<(ResultError&& result_error) {
140 Error& operator=(const Error&) = delete; variable
141 Error& operator=(Error&&) = delete; variable
194 explicit operator bool() const { return has_value(); }
196 T& operator*() & { return value(); }
197 const T& operator*() const & { return value(); }
[all …]
/system/extras/perfprofd/
Dquipper_helper.h38 reference operator*() const {
41 pointer operator->() const {
45 FilteredIterator& operator++() {
55 bool operator==(const FilteredIterator& rhs) const {
58 bool operator!=(const FilteredIterator& rhs) const {
59 return !(operator==(rhs));
80 bool operator()(const ::quipper::PerfDataProto_PerfEvent& evt) { in operator() function
93 bool operator()(const ::quipper::PerfDataProto_PerfEvent& evt) { in operator() function
106 bool operator()(const ::quipper::PerfDataProto_PerfEvent& evt) { in operator() function
119 bool operator()(const ::quipper::PerfDataProto_PerfEvent& evt) { in operator() function
[all …]
/system/keymaster/include/keymaster/
DUniquePtr.h29 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 …]

12345678910>>...14