Home
last modified time | relevance | path

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

12345678910>>...23

/frameworks/compile/mclinker/include/mcld/ADT/
DFlags.h26 operator unsigned int() const { return m_Data; }
28 bool operator!() const { return (m_Data == 0x0); }
30 Flags operator&(int pMask) const { return Flags(m_Data & pMask); }
32 Flags operator&(unsigned int pMask) const { return Flags(m_Data & pMask); }
34 Flags operator&(Enum pMask) const { return Flags(m_Data & pMask); }
36 Flags& operator&=(unsigned int pMask) {
41 Flags& operator=(Flags pOther) {
46 Flags operator^(Flags pOther) const { return Flags(m_Data ^ pOther.m_Data); }
48 Flags operator^(Enum pOther) const { return Flags(m_Data ^ pOther); }
50 Flags& operator^=(Flags pOther) {
[all …]
DStringHash.h30 uint32_t operator()(const llvm::StringRef pKey) const { in operator() function
42 uint32_t operator()(const llvm::StringRef pKey) const {
61 uint32_t operator()(const llvm::StringRef pKey) const {
77 uint32_t operator()(const llvm::StringRef pKey) const {
105 uint32_t operator()(const llvm::StringRef pKey) const {
125 uint32_t operator()(const llvm::StringRef pKey) const {
142 uint32_t operator()(const llvm::StringRef pKey) const {
158 uint32_t operator()(const llvm::StringRef pKey) const {
175 uint32_t operator()(const llvm::StringRef pKey) const {
192 uint32_t operator()(const llvm::StringRef pKey) const {
[all …]
/frameworks/base/libs/androidfw/include/androidfw/
DConfigDescription.h89 ConfigDescription& operator=(const android::ResTable_config& o); member
90 ConfigDescription& operator=(const ConfigDescription& o); member
91 ConfigDescription& operator=(ConfigDescription&& o) noexcept; member
136 bool operator<(const ConfigDescription& o) const;
137 bool operator<=(const ConfigDescription& o) const;
138 bool operator==(const ConfigDescription& o) const;
139 bool operator!=(const ConfigDescription& o) const;
140 bool operator>=(const ConfigDescription& o) const;
141 bool operator>(const ConfigDescription& o) const;
162 inline ConfigDescription& ConfigDescription::operator=(
[all …]
DLocale.h65 inline bool operator<(const LocaleValue& o) const;
66 inline bool operator<=(const LocaleValue& o) const;
67 inline bool operator==(const LocaleValue& o) const;
68 inline bool operator!=(const LocaleValue& o) const;
69 inline bool operator>=(const LocaleValue& o) const;
70 inline bool operator>(const LocaleValue& o) const;
91 bool LocaleValue::operator<(const LocaleValue& o) const {
95 bool LocaleValue::operator<=(const LocaleValue& o) const {
99 bool LocaleValue::operator==(const LocaleValue& o) const {
103 bool LocaleValue::operator!=(const LocaleValue& o) const {
[all …]
DTypeWrappers.h30 iterator& operator=(const iterator& rhs) {
36 bool operator==(const iterator& rhs) const {
40 bool operator!=(const iterator& rhs) const {
44 iterator operator++(int) {
46 operator++();
50 const ResTable_entry* operator->() const {
51 return operator*();
58 iterator& operator++();
59 const ResTable_entry* operator*() const;
/frameworks/base/libs/hwui/
DVector.h39 void operator+=(const Vector2& v) {
44 void operator-=(const Vector2& v) {
49 void operator+=(const float v) {
54 void operator-=(const float v) {
59 void operator/=(float s) {
64 void operator*=(float s) {
69 Vector2 operator+(const Vector2& v) const { return (Vector2){x + v.x, y + v.y}; }
71 Vector2 operator-(const Vector2& v) const { return (Vector2){x - v.x, y - v.y}; }
73 Vector2 operator/(float s) const { return (Vector2){x / s, y / s}; }
75 Vector2 operator*(float s) const { return (Vector2){x * s, y * s}; }
[all …]
/frameworks/native/services/sensorservice/
DRingBuffer.h51 iterator& operator++();
53 iterator operator++(int);
55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
59 T& operator*();
61 T* operator->();
77 const_iterator& operator++();
79 const_iterator operator++(int);
81 bool operator==(const const_iterator& rhs);
83 bool operator!=(const const_iterator& rhs);
[all …]
Dvec.h145 inline VLHS<TYPE, SIZE> PURE operator + (
157 inline VLHS<TYPE, SIZE> PURE operator - (
168 inline VEC<TYPE, SIZE> PURE operator * (
179 inline VEC<TYPE, SIZE> PURE operator * (
245 vec<TYPE, SIZE> PURE operator - (const vec<TYPE, SIZE>& lhs) {
260 inline const TYPE& operator[](size_t i) const { return v[i]; }
261 inline TYPE& operator[](size_t i) { return v[i]; }
269 inline const float& operator[](size_t i) const { return v[i]; }
270 inline float& operator[](size_t i) { return v[i]; }
280 inline const float& operator[](size_t i) const { return v[i]; }
[all …]
/frameworks/av/media/libmedia/include/media/
DRingBuffer.h51 iterator& operator++();
53 iterator operator++(int);
55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
59 T& operator*();
61 T* operator->();
77 const_iterator& operator++();
79 const_iterator operator++(int);
81 bool operator==(const const_iterator& rhs);
83 bool operator!=(const const_iterator& rhs);
[all …]
DModulo.h102 Modulo<T> operator +=(const Modulo<S> &other) {
110 Modulo<T> operator -=(const Modulo<S> &other) {
120 const Modulo<T> operator +(const Modulo<S> &other) const {
127 const Modulo<T> operator -(const Modulo<S> &other) const {
139 bool operator >(const Modulo<S> &other) const {
146 bool operator >=(const Modulo<S> &other) const {
153 bool operator ==(const Modulo<S> &other) const {
160 bool operator <=(const Modulo<S> &other) const {
167 bool operator <(const Modulo<S> &other) const {
177 Modulo<T> operator +=(const S &other) {
[all …]
/frameworks/native/libs/ui/include/ui/
DRegion.h47 Region& operator = (const Region& rhs); variable
106 inline const Region operator | (const Region& rhs) const;
107 inline const Region operator ^ (const Region& rhs) const;
108 inline const Region operator & (const Region& rhs) const;
109 inline const Region operator - (const Region& rhs) const;
110 inline const Region operator + (const Point& pt) const;
112 inline Region& operator |= (const Region& rhs);
113 inline Region& operator ^= (const Region& rhs);
114 inline Region& operator &= (const Region& rhs);
115 inline Region& operator -= (const Region& rhs);
[all …]
DPoint.h40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
44 return !operator == (rhs);
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point& operator += (const Point& rhs) {
68 inline Point& operator -= (const Point& rhs) {
74 const Point operator + (const Point& rhs) const {
78 const Point operator - (const Point& rhs) const {
/frameworks/native/libs/ui/include_vndk/ui/
DRegion.h47 Region& operator = (const Region& rhs); variable
106 inline const Region operator | (const Region& rhs) const;
107 inline const Region operator ^ (const Region& rhs) const;
108 inline const Region operator & (const Region& rhs) const;
109 inline const Region operator - (const Region& rhs) const;
110 inline const Region operator + (const Point& pt) const;
112 inline Region& operator |= (const Region& rhs);
113 inline Region& operator ^= (const Region& rhs);
114 inline Region& operator &= (const Region& rhs);
115 inline Region& operator -= (const Region& rhs);
[all …]
DPoint.h40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
44 return !operator == (rhs);
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point& operator += (const Point& rhs) {
68 inline Point& operator -= (const Point& rhs) {
74 const Point operator + (const Point& rhs) const {
78 const Point operator - (const Point& rhs) const {
/frameworks/av/media/codec2/core/include/
DC2.h145 type& operator=(const type &) = delete; \
149 type& operator=(type &&) = default; \
161 inline bool operator!=(const type &other) const { return !(*this == other); } \
162 … inline bool operator<=(const type &other) const { return (*this == other) || (*this < other); } \
163 inline bool operator>=(const type &other) const { return !(*this < other); } \
164 inline bool operator>(const type &other) const { return !(*this < other) && !(*this == other); }
167 inline bool operator<(const type &other) const { return field < other.field; } \
168 inline bool operator==(const type &other) const { return field == other.field; } \
172 inline bool operator<(const type &other) const { \
175 inline bool operator==(const type &other) const { \
[all …]
/frameworks/rs/cpp/util/
DStrongPointer.h39 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 { \
53 inline bool operator _op_ (const wp<T>& o) const { \
57 inline bool operator _op_ (const wp<U>& o) const { \
78 sp& operator = (T* other); variable
79 sp& operator = (const sp<T>& other); variable
81 template<typename U> sp& operator = (const sp<U>& other); variable
82 template<typename U> sp& operator = (U* other); variable
[all …]
DRefBase.h40 inline bool operator _op_ (const sp<T>& o) const { \
43 inline bool operator _op_ (const T* o) const { \
47 inline bool operator _op_ (const sp<U>& o) const { \
51 inline bool operator _op_ (const U* o) const { \
157 RefBase& operator=(const RefBase& o); variable
217 wp& operator = (T* other); variable
218 wp& operator = (const wp<T>& other); variable
219 wp& operator = (const sp<T>& other); variable
221 template<typename U> wp& operator = (U* other); variable
222 template<typename U> wp& operator = (const wp<U>& other); variable
[all …]
/frameworks/base/tools/aapt2/
DResource.h118 ResourceNameRef& operator=(const ResourceNameRef& rhs) = default; member
119 ResourceNameRef& operator=(ResourceNameRef&& rhs) = default; member
120 ResourceNameRef& operator=(const ResourceName& rhs); member
200 bool operator<(const ResourceKey& a, const ResourceKey& b);
221 bool operator<(const ResourceKeyRef& a, const ResourceKeyRef& b);
256 inline bool operator<(const ResourceId& lhs, const ResourceId& rhs) {
260 inline bool operator>(const ResourceId& lhs, const ResourceId& rhs) {
264 inline bool operator==(const ResourceId& lhs, const ResourceId& rhs) {
268 inline bool operator!=(const ResourceId& lhs, const ResourceId& rhs) {
272 inline ::std::ostream& operator<<(::std::ostream& out, const ResourceId& res_id) {
[all …]
/frameworks/native/libs/vr/libdvr/include/dvr/
Ddvr_deleter.h46 void operator()(DvrBuffer* p) { dvrBufferDestroy(p); } in operator() function
47 void operator()(DvrReadBuffer* p) { dvrReadBufferDestroy(p); } in operator() function
48 void operator()(DvrWriteBuffer* p) { dvrWriteBufferDestroy(p); } in operator() function
49 void operator()(DvrReadBufferQueue* p) { dvrReadBufferQueueDestroy(p); } in operator() function
50 void operator()(DvrWriteBufferQueue* p) { dvrWriteBufferQueueDestroy(p); } in operator() function
51 void operator()(DvrDisplayManager* p) { dvrDisplayManagerDestroy(p); } in operator() function
52 void operator()(DvrSurfaceState* p) { dvrSurfaceStateDestroy(p); } in operator() function
53 void operator()(DvrSurface* p) { dvrSurfaceDestroy(p); } in operator() function
54 void operator()(DvrHwcClient* p) { dvrHwcClientDestroy(p); } in operator() function
55 void operator()(DvrHwcFrame* p) { dvrHwcFrameDestroy(p); } in operator() function
/frameworks/compile/mclinker/include/mcld/LD/
DMsgHandler.h46 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
52 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
58 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
64 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
71 inline const MsgHandler& operator<<(const MsgHandler& pHandler, int pValue) {
76 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
82 inline const MsgHandler& operator<<(const MsgHandler& pHandler, long pValue) {
87 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
93 inline const MsgHandler& operator<<(const MsgHandler& pHandler,
99 inline const MsgHandler& operator<<(const MsgHandler& pHandler, bool pValue) {
/frameworks/base/tools/aapt/
DConfigDescription.h41 ConfigDescription& operator=(const android::ResTable_config& o) {
47 ConfigDescription& operator=(const ConfigDescription& o) {
52 inline bool operator<(const ConfigDescription& o) const { return compare(o) < 0; }
53 inline bool operator<=(const ConfigDescription& o) const { return compare(o) <= 0; }
54 inline bool operator==(const ConfigDescription& o) const { return compare(o) == 0; }
55 inline bool operator!=(const ConfigDescription& o) const { return compare(o) != 0; }
56 inline bool operator>=(const ConfigDescription& o) const { return compare(o) >= 0; }
57 inline bool operator>(const ConfigDescription& o) const { return compare(o) > 0; }
/frameworks/native/libs/math/include/math/
Dquat.h76 inline constexpr T const& operator[](size_t i) const {
84 inline T& operator[](size_t i) {
93 TQuaternion& operator = (const TQuaternion&) = default; variable
127 constexpr TQuaternion operator~() const {
147 constexpr inline quat operator"" _i(long double v) {
150 constexpr inline quat operator"" _j(long double v) {
153 constexpr inline quat operator"" _k(long double v) {
157 constexpr inline quat operator"" _i(unsigned long long v) { // NOLINT
160 constexpr inline quat operator"" _j(unsigned long long v) { // NOLINT
163 constexpr inline quat operator"" _k(unsigned long long v) { // NOLINT
[all …]
/frameworks/base/core/jni/
Dandroid_nio_utils.h70 AutoBufferPointer& operator=(AutoBufferPointer&) = delete; variable
71 static void* operator new(std::size_t);
72 static void* operator new[](std::size_t);
73 static void* operator new(std::size_t, void*);
74 static void* operator new[](std::size_t, void*);
75 static void operator delete(void*, std::size_t);
76 static void operator delete[](void*, std::size_t);
/frameworks/base/cmds/idmap2/include/idmap2/
DResult.h60 Result& operator=(const Result& rhs) = default; variable
61 Result& operator=(Result&& rhs) noexcept = default; variable
63 explicit operator bool() const;
65 constexpr const T& operator*() const&;
66 T& operator*() &;
68 constexpr const T* operator->() const&;
69 T* operator->() &;
98 Result<T>::operator bool() const {
103 constexpr const T& Result<T>::operator*() const& {
109 T& Result<T>::operator*() & {
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
Dm4vh263_decoder_pv_types.h55 int32 operator=(int32 aStatus); variable
56 int32 operator==(int32 aStatus) const;
57 int32 operator!=(int32 aStatus) const;
58 int32 operator>=(int32 aStatus) const;
59 int32 operator<=(int32 aStatus) const;
60 int32 operator>(int32 aStatus) const;
61 int32 operator<(int32 aStatus) const;

12345678910>>...23