Searched refs:rhs (Results 1 - 25 of 144) sorted by relevance

123456

/frameworks/native/include/ui/
H A DPoint.h40 inline bool operator == (const Point& rhs) const {
41 return (x == rhs.x) && (y == rhs.y);
43 inline bool operator != (const Point& rhs) const {
44 return !operator == (rhs);
53 bool operator < (const Point& rhs) const {
54 return y<rhs.y || (y==rhs.y && x<rhs.x);
63 inline Point& operator += (const Point& rhs) { argument
68 operator -=(const Point& rhs) argument
[all...]
H A DRegion.h39 Region(const Region& rhs);
40 explicit Region(const Rect& rhs);
45 Region& operator = (const Region& rhs);
63 Region& orSelf(const Rect& rhs);
64 Region& xorSelf(const Rect& rhs);
65 Region& andSelf(const Rect& rhs);
66 Region& subtractSelf(const Rect& rhs);
69 Region& orSelf(const Region& rhs);
70 Region& xorSelf(const Region& rhs);
71 Region& andSelf(const Region& rhs);
201 operator |=(const Region& rhs) argument
204 operator ^=(const Region& rhs) argument
207 operator &=(const Region& rhs) argument
210 operator -=(const Region& rhs) argument
[all...]
H A DRect.h115 inline bool operator == (const Rect& rhs) const {
116 return (left == rhs.left) && (top == rhs.top) &&
117 (right == rhs.right) && (bottom == rhs.bottom);
120 inline bool operator != (const Rect& rhs) const {
121 return !operator == (rhs);
126 bool operator < (const Rect& rhs) const;
128 const Rect operator + (const Point& rhs) const;
129 const Rect operator - (const Point& rhs) cons
131 operator +=(const Point& rhs) argument
134 operator -=(const Point& rhs) argument
171 set(const Rect& rhs) argument
[all...]
H A DTVecHelpers.h47 Impersonator& operator = (const TYPE& rhs) { argument
48 reinterpret_cast<TYPE&>(*this) = rhs;
76 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
78 rhs[i] += v[i];
80 return rhs;
84 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
86 rhs[i] -= v[i];
88 return rhs;
97 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
99 rhs[
104 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
157 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
165 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
178 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
185 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
243 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
250 BASE<T>& rhs = static_cast<BASE<T>&>(*this); local
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DUtils.cpp21 bool operator<(const Vector<uint8_t> &lhs, const Vector<uint8_t> &rhs) { argument
22 if (lhs.size() < rhs.size()) {
24 } else if (lhs.size() > rhs.size()) {
27 return memcmp((void *)lhs.array(), (void *)rhs.array(), rhs.size()) < 0;
H A DUtils.h26 bool operator<(const Vector<uint8_t> &lhs, const Vector<uint8_t> &rhs);
/frameworks/base/tools/split-select/
H A DSplitDescription.h34 int compare(const SplitDescription& rhs) const;
35 inline bool operator<(const SplitDescription& rhs) const;
36 inline bool operator==(const SplitDescription& rhs) const;
37 inline bool operator!=(const SplitDescription& rhs) const;
50 bool SplitDescription::operator<(const SplitDescription& rhs) const {
51 return compare(rhs) < 0;
54 bool SplitDescription::operator==(const SplitDescription& rhs) const {
55 return compare(rhs) == 0;
58 bool SplitDescription::operator!=(const SplitDescription& rhs) const {
59 return compare(rhs) !
[all...]
H A DTestRules.h32 AndRule& add(const Rule& rhs) { argument
33 subrules.add(new Rule(rhs));
43 OrRule& add(const Rule& rhs) { argument
44 subrules.add(new Rule(rhs));
/frameworks/base/libs/hwui/utils/
H A DMacros.h25 int compare(const Type& rhs) const { return memcmp(this, &rhs, sizeof(Type));} \
28 friend inline int strictly_order_type(const Type& lhs, const Type& rhs) { return lhs.compare(rhs) < 0; } \
29 friend inline int compare_type(const Type& lhs, const Type& rhs) { return lhs.compare(rhs); } \
/frameworks/base/include/androidfw/
H A DTypeWrappers.h30 iterator& operator=(const iterator& rhs) { argument
31 mTypeVariant = rhs.mTypeVariant;
32 mIndex = rhs.mIndex;
35 bool operator==(const iterator& rhs) const {
36 return mTypeVariant == rhs.mTypeVariant && mIndex == rhs.mIndex;
39 bool operator!=(const iterator& rhs) const {
40 return mTypeVariant != rhs.mTypeVariant || mIndex != rhs.mIndex;
/frameworks/base/tools/aapt/
H A DSymbol.h33 inline bool operator<(const Symbol& rhs) const;
48 inline bool operator<(const SymbolDefinition& rhs) const;
77 bool Symbol::operator<(const Symbol& rhs) const {
78 return (package < rhs.package) || (type < rhs.type) || (name < rhs.name) || (id < rhs.id);
90 bool SymbolDefinition::operator<(const SymbolDefinition& rhs) const {
91 return (symbol < rhs.symbol) || (config < rhs
[all...]
/frameworks/native/libs/ui/
H A DRect.cpp37 bool Rect::operator <(const Rect& rhs) const {
38 if (top < rhs.top) {
40 } else if (top == rhs.top) {
41 if (left < rhs.left) {
43 } else if (left == rhs.left) {
44 if (bottom < rhs.bottom) {
46 } else if (bottom == rhs.bottom) {
47 if (right < rhs.right) {
72 const Rect Rect::operator +(const Point& rhs) const {
73 const Rect result(left + rhs
[all...]
H A DRegion.cpp62 Region::Region(const Region& rhs) argument
63 : mStorage(rhs.mStorage)
66 validate(rhs, "rhs copy-ctor");
70 Region::Region(const Rect& rhs) { argument
71 mStorage.add(rhs);
205 Region& Region::operator = (const Region& rhs) argument
209 validate(rhs, "rhs.operator=");
211 mStorage = rhs
294 orSelf(const Region& rhs) argument
297 xorSelf(const Region& rhs) argument
300 andSelf(const Region& rhs) argument
303 subtractSelf(const Region& rhs) argument
306 operationSelf(const Region& rhs, int op) argument
331 operation(const Rect& rhs, int op) const argument
351 operation(const Region& rhs, int op) const argument
365 orSelf(const Region& rhs, int dx, int dy) argument
368 xorSelf(const Region& rhs, int dx, int dy) argument
371 andSelf(const Region& rhs, int dx, int dy) argument
374 subtractSelf(const Region& rhs, int dx, int dy) argument
377 operationSelf(const Region& rhs, int dx, int dy, int op) argument
385 merge(const Region& rhs, int dx, int dy) const argument
388 mergeExclusive(const Region& rhs, int dx, int dy) const argument
391 intersect(const Region& rhs, int dx, int dy) const argument
394 subtract(const Region& rhs, int dx, int dy) const argument
397 operation(const Region& rhs, int dx, int dy, int op) const argument
454 min(T rhs, T lhs) argument
456 max(T rhs, T lhs) argument
559 boolean_operation(int op, Region& dst, const Region& lhs, const Region& rhs, int dx, int dy) argument
669 boolean_operation(int op, Region& dst, const Region& lhs, const Rect& rhs, int dx, int dy) argument
696 boolean_operation(int op, Region& dst, const Region& lhs, const Region& rhs) argument
702 boolean_operation(int op, Region& dst, const Region& lhs, const Rect& rhs) argument
[all...]
/frameworks/rs/
H A DrsMatrix2x2.h40 void loadMultiply(const rs_matrix2x2 *lhs, const rs_matrix2x2 *rhs);
44 void multiply(const rs_matrix2x2 *rhs) { argument
45 loadMultiply(this, rhs);
H A DrsMatrix3x3.h40 void loadMultiply(const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs);
44 void multiply(const rs_matrix3x3 *rhs) { argument
45 loadMultiply(this, rhs);
/frameworks/native/include/private/ui/
H A DRegionHelper.h54 inline region(const region& rhs) argument
55 : rects(rhs.rects), count(rhs.count), dx(rhs.dx), dy(rhs.dy) { }
69 inline region_operator(int op, const region& lhs, const region& rhs) argument
70 : op_mask(op), spanner(lhs, rhs)
77 SpannerInner spannerInner(spanner.lhs, spanner.rhs);
162 region rhs; member in class:android::region_operator::Spanner
165 inline Spanner(const region& lhs, const region& rhs) argument
223 region rhs; member in class:android::region_operator::SpannerInner
226 SpannerInner(const region& lhs, const region& rhs) argument
[all...]
/frameworks/native/services/sensorservice/
H A Dmat.h35 typename TypeTraits<TYPE>::ParameterType rhs) {
38 lhs[i][j] = (i==j) ? rhs : 0;
45 const mat<TYPE, C, D>& rhs)
52 v += lhs[k][r] * rhs[c][k];
63 const vec<TYPE, D>& rhs)
69 v += lhs[k][r] * rhs[k];
79 const mat<TYPE, C, 1>& rhs)
84 res[c][r] = lhs[r] * rhs[c][0];
92 const mat<TYPE, C, R>& rhs,
98 res[c][r] = rhs[
33 doAssign( mat<TYPE, C, R>& lhs, typename TypeTraits<TYPE>::ParameterType rhs) argument
43 doMul( const mat<TYPE, D, R>& lhs, const mat<TYPE, C, D>& rhs) argument
61 doMul( const mat<TYPE, D, R>& lhs, const vec<TYPE, D>& rhs) argument
77 doMul( const vec<TYPE, R>& lhs, const mat<TYPE, C, 1>& rhs) argument
91 doMul( const mat<TYPE, C, R>& rhs, typename TypeTraits<TYPE>::ParameterType v) argument
105 doMul( typename TypeTraits<TYPE>::ParameterType v, const mat<TYPE, C, R>& rhs) argument
141 mat(const mat& rhs) argument
142 mat(const base& rhs) argument
148 mat(pTYPE rhs) argument
155 operator =(const mat& rhs) argument
160 operator =(const base& rhs) argument
165 operator =(pTYPE rhs) argument
172 operator +(const mat& lhs, const mat& rhs) argument
177 operator -(const mat& lhs, const mat& rhs) argument
185 operator *( const mat<TYPE, D, R>& lhs, const mat<TYPE, C, D>& rhs) argument
192 operator *( const mat& lhs, const vec<TYPE, C>& rhs) argument
198 operator *( const vec<TYPE, R>& lhs, const mat<TYPE, C, 1>& rhs) argument
209 operator *(pTYPE v, const mat& rhs) argument
231 operator <<( const column_builder<PREV_COLUMN>& lhs, const vec<TYPE, R>& rhs) argument
240 operator <<( const column_builder<C-2>& lhs, const vec<TYPE, R>& rhs) argument
248 operator <<(const vec<TYPE, R>& rhs) argument
268 mat(const base& rhs) argument
269 mat(const mat& rhs) argument
270 mat(const TYPE& rhs) argument
271 operator =(const mat& rhs) argument
272 operator =(const base& rhs) argument
273 operator =(const TYPE& rhs) argument
277 operator <<(const vec<TYPE, R>& rhs) argument
[all...]
H A Dvec.h50 vec<TYPE, SIZE>& lhs, const VEC<TYPE, S>& rhs) {
54 lhs[i] = rhs[i];
69 const VRHS<TYPE, SIZE>& rhs) {
72 r[i] = lhs[i] + rhs[i];
84 const VRHS<TYPE, SIZE>& rhs) {
87 r[i] = lhs[i] - rhs[i];
98 typename TypeTraits<TYPE>::ParameterType rhs) {
101 r[i] = lhs[i] * rhs;
112 const VEC<TYPE, SIZE>& rhs) {
115 r[i] = lhs * rhs[
49 doAssign( vec<TYPE, SIZE>& lhs, const VEC<TYPE, S>& rhs) argument
67 doAdd( const VLHS<TYPE, SIZE>& lhs, const VRHS<TYPE, SIZE>& rhs) argument
82 doSub( const VLHS<TYPE, SIZE>& lhs, const VRHS<TYPE, SIZE>& rhs) argument
96 doMulScalar( const VEC<TYPE, SIZE>& lhs, typename TypeTraits<TYPE>::ParameterType rhs) argument
110 doScalarMul( typename TypeTraits<TYPE>::ParameterType lhs, const VEC<TYPE, SIZE>& rhs) argument
145 operator +( const VLHS<TYPE, SIZE>& lhs, const VRHS<TYPE, SIZE>& rhs) argument
157 operator -( const VLHS<TYPE, SIZE>& lhs, const VRHS<TYPE, SIZE>& rhs) argument
168 operator *( const VEC<TYPE, SIZE>& lhs, typename TypeTraits<TYPE>::ParameterType rhs) argument
179 operator *( typename TypeTraits<TYPE>::ParameterType lhs, const VEC<TYPE, SIZE>& rhs) argument
192 dot_product( const VLHS<TYPE, SIZE>& lhs, const VRHS<TYPE, SIZE>& rhs) argument
324 vec(const vec& rhs) argument
325 vec(const base& rhs) argument
330 vec(pTYPE rhs) argument
336 vec(const VEC<TYPE, S>& rhs) argument
348 operator =(const vec& rhs) argument
353 operator =(const base& rhs) argument
358 operator =(pTYPE rhs) argument
365 operator =(const VEC<TYPE, S>& rhs) argument
385 operator +(const vec& lhs, const vec& rhs) argument
388 operator -(const vec& lhs, const vec& rhs) argument
394 operator *(pTYPE v, const vec& rhs) argument
397 dot_product(const vec& lhs, const vec& rhs) argument
405 operator +=(const vec<TYPE, SIZE>& rhs) argument
413 operator -=(const vec<TYPE, SIZE>& rhs) argument
421 operator *=(vec<TYPE, SIZE>::pTYPE rhs) argument
[all...]
H A DBatteryService.h43 bool operator < (const Info& rhs) const {
44 return (uid == rhs.uid) ? (handle < rhs.handle) : (uid < rhs.uid);
/frameworks/rs/scriptc/
H A Drs_quaternion.rsh45 * @param rhs source quaternion
48 rsQuaternionSet(rs_quaternion *q, const rs_quaternion *rhs) {
49 q->w = rhs->w;
50 q->x = rhs->x;
51 q->y = rhs->y;
52 q->z = rhs->z;
74 rsQuaternionAdd(rs_quaternion *q, const rs_quaternion *rhs) {
75 q->w *= rhs->w;
76 q->x *= rhs->x;
77 q->y *= rhs
[all...]
/frameworks/base/libs/hwui/
H A DLayerCache.h112 static int compare(const LayerEntry& lhs, const LayerEntry& rhs);
122 friend inline int strictly_order_type(const LayerEntry& lhs, const LayerEntry& rhs) { argument
123 return LayerEntry::compare(lhs, rhs) < 0;
126 friend inline int compare_type(const LayerEntry& lhs, const LayerEntry& rhs) { argument
127 return LayerEntry::compare(lhs, rhs);
H A DRenderBufferCache.h93 static int compare(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs);
104 const RenderBufferEntry& rhs) {
105 return RenderBufferEntry::compare(lhs, rhs) < 0;
109 const RenderBufferEntry& rhs) {
110 return RenderBufferEntry::compare(lhs, rhs);
103 strictly_order_type(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs) argument
108 compare_type(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs) argument
H A DTextDropShadowCache.cpp53 int ShadowText::compare(const ShadowText& lhs, const ShadowText& rhs) { argument
54 int deltaInt = int(lhs.len) - int(rhs.len);
57 deltaInt = lhs.flags - rhs.flags;
60 if (lhs.radius < rhs.radius) return -1;
61 if (lhs.radius > rhs.radius) return +1;
63 if (lhs.typeface < rhs.typeface) return -1;
64 if (lhs.typeface > rhs.typeface) return +1;
66 if (lhs.textSize < rhs.textSize) return -1;
67 if (lhs.textSize > rhs.textSize) return +1;
69 if (lhs.italicStyle < rhs
[all...]
/frameworks/av/media/img_utils/src/
H A DSortedEntryVector.cpp37 int SortedEntryVector::do_compare(const void* lhs, const void* rhs) const {
39 const sp<TiffEntry>* rEntry = reinterpret_cast<const sp<TiffEntry>*>(rhs);
/frameworks/opt/colorpicker/src/com/android/colorpicker/
H A DHsvColorComparator.java29 public int compare(Integer lhs, Integer rhs) { argument
37 Color.colorToHSV(rhs, hsv2);

Completed in 1669 milliseconds

123456