Searched refs:rhs (Results 26 - 50 of 144) sorted by relevance

123456

/frameworks/base/tools/aapt/
H A DSourcePos.cpp27 ErrorPos& operator=(const ErrorPos& rhs);
56 ErrorPos::operator=(const ErrorPos& rhs) argument
58 this->file = rhs.file;
59 this->line = rhs.line;
60 this->error = rhs.error;
61 this->level = rhs.level;
144 SourcePos::operator<(const SourcePos& rhs) const
146 return (file < rhs.file) || (line < rhs.line);
H A DSourcePos.h24 bool operator<(const SourcePos& rhs) const;
/frameworks/rs/
H A DrsMatrix2x2.cpp44 void Matrix2x2::loadMultiply(const rs_matrix2x2 *lhs, const rs_matrix2x2 *rhs) { argument
52 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j);
H A DrsMatrix4x4.h45 void loadMultiply(const rs_matrix4x4 *lhs, const rs_matrix4x4 *rhs);
61 void multiply(const rs_matrix4x4 *rhs) { argument
62 loadMultiply(this, rhs);
H A DrsMatrix3x3.cpp48 void Matrix3x3::loadMultiply(const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs) { argument
57 const float rhs_ij = ((const Matrix3x3 *)rhs)->get(i, j);
/frameworks/av/media/img_utils/include/img_utils/
H A DSortedEntryVector.h46 virtual int do_compare(const void* lhs, const void* rhs) const;
/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.h58 CameraTraces(CameraTraces& rhs);
/frameworks/base/rs/java/android/renderscript/
H A DMatrix2f.java131 * @param rhs right hand side matrix
133 public void loadMultiply(Matrix2f lhs, Matrix2f rhs) { argument
138 float rhs_ij = rhs.get(i,j);
150 * @param rhs right hand side to multiply by
152 public void multiply(Matrix2f rhs) { argument
154 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/av/services/audioflinger/
H A DFastMixerDumpState.h37 FastTrackUnderruns& operator=(const FastTrackUnderruns& rhs) argument
38 { if (this != &rhs) mAtomic = rhs.mAtomic; return *this; }
/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;
H A DSortedList.h41 SortedList(const SortedList<TYPE>& rhs);
44 const SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs) const;
45 SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs);
102 virtual int do_compare(const void* lhs, const void* rhs) const;
117 inline SortedList<TYPE>::SortedList(const SortedList<TYPE>& rhs): SortedListImpl(rhs) { argument
125 inline SortedList<TYPE>& SortedList<TYPE>::operator =(const SortedList<TYPE>& rhs) { argument
126 SortedListImpl::operator =(rhs);
132 const SortedList<TYPE>& rhs) const {
133 SortedListImpl::operator =(rhs);
[all...]
H A DSortedListImpl.cpp29 SortedListImpl::SortedListImpl(const VectorImpl& rhs): VectorImpl(rhs) { argument
35 SortedListImpl& SortedListImpl::operator =(const SortedListImpl& rhs) { argument
37 (VectorImpl::operator =(static_cast<const VectorImpl&> (rhs)));
/frameworks/native/include/ui/
H A DFence.h108 Fence(const Fence& rhs);
109 Fence& operator = (const Fence& rhs);
110 const Fence& operator = (const Fence& rhs) const;
/frameworks/base/libs/hwui/
H A DPatchCache.h107 static int compare(const PatchDescription& lhs, const PatchDescription& rhs);
118 const PatchDescription& rhs) {
119 return PatchDescription::compare(lhs, rhs) < 0;
123 const PatchDescription& rhs) {
124 return PatchDescription::compare(lhs, rhs);
117 strictly_order_type(const PatchDescription& lhs, const PatchDescription& rhs) argument
122 compare_type(const PatchDescription& lhs, const PatchDescription& rhs) argument
H A DTextDropShadowCache.h64 static int compare(const ShadowText& lhs, const ShadowText& rhs);
103 inline int strictly_order_type(const ShadowText& lhs, const ShadowText& rhs) { argument
104 return ShadowText::compare(lhs, rhs) < 0;
107 inline int compare_type(const ShadowText& lhs, const ShadowText& rhs) { argument
108 return ShadowText::compare(lhs, rhs);
H A DRenderBufferCache.cpp81 const RenderBufferCache::RenderBufferEntry& rhs) {
82 int deltaInt = int(lhs.mWidth) - int(rhs.mWidth);
85 deltaInt = int(lhs.mHeight) - int(rhs.mHeight);
88 return int(lhs.mFormat) - int(rhs.mFormat);
79 compare( const RenderBufferCache::RenderBufferEntry& lhs, const RenderBufferCache::RenderBufferEntry& rhs) argument
/frameworks/base/tools/split-select/
H A DRule.cpp32 Rule::Rule(const Rule& rhs) argument
34 , op(rhs.op)
35 , key(rhs.key)
36 , negate(rhs.negate)
37 , stringArgs(rhs.stringArgs)
38 , longArgs(rhs.longArgs)
39 , subrules(rhs.subrules) {
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp236 void matrixx_t::load(const matrixf_t& rhs) { argument
238 GLfloat const* fp = rhs.elements();
252 void matrixf_t::multiply(matrixf_t& r, const matrixf_t& lhs, const matrixf_t& rhs) argument
256 register const float rhs_i0 = rhs.m[ I(i,0) ];
262 register const float rhs_ij = rhs.m[ I(i,j) ];
287 void matrixf_t::set(const GLfixed* rhs) { argument
288 load(rhs);
291 void matrixf_t::set(const GLfloat* rhs) { argument
292 load(rhs);
295 void matrixf_t::load(const GLfixed* rhs) { argument
303 load(const GLfloat* rhs) argument
307 load(const matrixf_t& rhs) argument
311 multiply(const matrixf_t& rhs) argument
406 load(const GLfixed* rhs) argument
413 load(const GLfloat* rhs) argument
419 multiply(const matrixf_t& rhs) argument
724 point2__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
734 point3__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
745 point4__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
757 point3__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
771 point4__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
786 point2__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
795 point3__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
804 point4__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
846 matrixf_t rhs; local
885 matrixf_t rhs; local
957 matrixf_t rhs; local
966 matrixf_t rhs; local
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DMediaSizeUtils.java81 public int compare(MediaSize lhs, MediaSize rhs) { argument
84 String rhsStandard = getStandardForMediaSize(mContext, rhs);
101 compareTo(rhs.getLabel(mContext.getPackageManager()));
/frameworks/native/include/gui/
H A DSurfaceControl.h55 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs);
82 SurfaceControl& operator = (SurfaceControl& rhs);
83 SurfaceControl(const SurfaceControl& rhs);
/frameworks/base/include/androidfw/
H A DAssetDir.h100 bool operator< (const FileInfo& rhs) const {
101 return mFileName < rhs.mFileName;
105 bool operator== (const FileInfo& rhs) const {
106 return mFileName == rhs.mFileName;
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileSystem.h65 inline bool operator==(const FileStatus& rhs, const FileStatus& lhs) { argument
66 return rhs.type() == lhs.type();
69 inline bool operator!=(const FileStatus& rhs, const FileStatus& lhs ) { argument
70 return !(rhs == lhs);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h187 static HWCLayer* copy(HWCLayer *rhs) { argument
188 return rhs ? rhs->dup() : NULL;
209 LayerListIterator& operator = (const LayerListIterator& rhs);
213 LayerListIterator(const LayerListIterator& rhs) argument
214 : mLayerList(HWCLayer::copy(rhs.mLayerList)), mIndex(rhs.mIndex) {
230 bool operator == (const LayerListIterator& rhs) const {
231 return mIndex == rhs.mIndex;
233 bool operator != (const LayerListIterator& rhs) cons
[all...]

Completed in 5545 milliseconds

123456