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

12345

/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);
60 Region& orSelf(const Rect& rhs);
61 Region& xorSelf(const Rect& rhs);
62 Region& andSelf(const Rect& rhs);
63 Region& subtractSelf(const Rect& rhs);
66 Region& orSelf(const Region& rhs);
67 Region& xorSelf(const Region& rhs);
68 Region& andSelf(const Region& rhs);
198 operator |=(const Region& rhs) argument
201 operator ^=(const Region& rhs) argument
204 operator &=(const Region& rhs) argument
207 operator -=(const Region& rhs) argument
[all...]
H A DRect.h114 inline bool operator == (const Rect& rhs) const {
115 return (left == rhs.left) && (top == rhs.top) &&
116 (right == rhs.right) && (bottom == rhs.bottom);
119 inline bool operator != (const Rect& rhs) const {
120 return !operator == (rhs);
125 bool operator < (const Rect& rhs) const;
127 const Rect operator + (const Point& rhs) const;
128 const Rect operator - (const Point& rhs) cons
130 operator +=(const Point& rhs) argument
133 operator -=(const Point& rhs) argument
170 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...]
H A DFence.h108 Fence(const Fence& rhs);
109 Fence& operator = (const Fence& rhs);
110 const Fence& operator = (const Fence& rhs) const;
/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.cpp61 Region::Region(const Region& rhs) argument
62 : mStorage(rhs.mStorage)
65 validate(rhs, "rhs copy-ctor");
69 Region::Region(const Rect& rhs) { argument
70 mStorage.add(rhs);
204 Region& Region::operator = (const Region& rhs) argument
208 validate(rhs, "rhs.operator=");
210 mStorage = rhs
277 orSelf(const Region& rhs) argument
280 xorSelf(const Region& rhs) argument
283 andSelf(const Region& rhs) argument
286 subtractSelf(const Region& rhs) argument
289 operationSelf(const Region& rhs, int op) argument
314 operation(const Rect& rhs, int op) const argument
334 operation(const Region& rhs, int op) const argument
348 orSelf(const Region& rhs, int dx, int dy) argument
351 xorSelf(const Region& rhs, int dx, int dy) argument
354 andSelf(const Region& rhs, int dx, int dy) argument
357 subtractSelf(const Region& rhs, int dx, int dy) argument
360 operationSelf(const Region& rhs, int dx, int dy, int op) argument
368 merge(const Region& rhs, int dx, int dy) const argument
371 mergeExclusive(const Region& rhs, int dx, int dy) const argument
374 intersect(const Region& rhs, int dx, int dy) const argument
377 subtract(const Region& rhs, int dx, int dy) const argument
380 operation(const Region& rhs, int dx, int dy, int op) const argument
437 min(T rhs, T lhs) argument
439 max(T rhs, T lhs) argument
542 boolean_operation(int op, Region& dst, const Region& lhs, const Region& rhs, int dx, int dy) argument
652 boolean_operation(int op, Region& dst, const Region& lhs, const Rect& rhs, int dx, int dy) argument
679 boolean_operation(int op, Region& dst, const Region& lhs, const Region& rhs) argument
685 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
46 tmp.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
46 tmp.loadMultiply(this, rhs);
H A DrsMatrix2x2.cpp44 void Matrix2x2::loadMultiply(const rs_matrix2x2 *lhs, const rs_matrix2x2 *rhs) { argument
49 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j);
/frameworks/base/tools/aapt/
H A DSourcePos.cpp22 bool operator<(const ErrorPos& rhs) const;
23 bool operator==(const ErrorPos& rhs) const;
24 ErrorPos& operator=(const ErrorPos& rhs);
57 ErrorPos::operator<(const ErrorPos& rhs) const
59 if (this->file < rhs.file) return true;
60 if (this->file == rhs.file) {
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
63 if (this->error < rhs.error) return true;
70 ErrorPos::operator==(const ErrorPos& rhs) cons
78 operator =(const ErrorPos& rhs) argument
[all...]
/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.h47 bool operator < (const Info& rhs) const {
48 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.h108 static int compare(const LayerEntry& lhs, const LayerEntry& rhs);
118 friend inline int strictly_order_type(const LayerEntry& lhs, const LayerEntry& rhs) { argument
119 return LayerEntry::compare(lhs, rhs) < 0;
122 friend inline int compare_type(const LayerEntry& lhs, const LayerEntry& rhs) { argument
123 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/opt/colorpicker/src/com/android/colorpicker/
H A DHsvColorComparator.java29 public int compare(Integer lhs, Integer rhs) { argument
37 Color.colorToHSV(rhs, hsv2);
/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.h58 CameraTraces(CameraTraces& rhs);
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix2f.java134 * @param rhs right hand side matrix
136 public void loadMultiply(Matrix2f lhs, Matrix2f rhs) { argument
141 float rhs_ij = rhs.get(i,j);
153 * @param rhs right hand side to multiply by
155 public void multiply(Matrix2f rhs) { argument
157 tmp.loadMultiply(this, rhs);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.h75 inline Key(const Key& rhs) : mKey(rhs.mKey) { } argument
102 friend inline int strictly_order_type(const Key& lhs, const Key& rhs) { argument
103 return (lhs.mKey < rhs.mKey) ? 1 : 0;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix2f.java134 * @param rhs right hand side matrix
136 public void loadMultiply(Matrix2f lhs, Matrix2f rhs) { argument
141 float rhs_ij = rhs.get(i,j);
153 * @param rhs right hand side to multiply by
155 public void multiply(Matrix2f rhs) { argument
157 tmp.loadMultiply(this, rhs);
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.h28 SortedListImpl(const VectorImpl& rhs);
31 SortedListImpl& operator =(const SortedListImpl& rhs);
41 virtual int do_compare(const void* lhs, const void* rhs) const = 0;

Completed in 507 milliseconds

12345