Searched defs:rhs (Results 51 - 75 of 160) sorted by relevance

1234567

/frameworks/base/tools/aapt2/util/
H A DBigBuffer.h71 BigBuffer(BigBuffer&& rhs);
139 inline BigBuffer::BigBuffer(BigBuffer&& rhs) argument
140 : block_size_(rhs.block_size_),
141 size_(rhs.size_),
142 blocks_(std::move(rhs.blocks_)) {}
H A DMaybe.h44 Maybe(const Maybe& rhs);
47 Maybe(const Maybe<U>& rhs); // NOLINT(implicit)
49 Maybe(Maybe&& rhs);
52 Maybe(Maybe<U>&& rhs); // NOLINT(implicit)
54 Maybe& operator=(const Maybe& rhs);
57 Maybe& operator=(const Maybe<U>& rhs);
59 Maybe& operator=(Maybe&& rhs);
62 Maybe& operator=(Maybe<U>&& rhs);
99 Maybe& copy(const Maybe<U>& rhs);
102 Maybe& move(Maybe<U>&& rhs);
122 Maybe(const Maybe& rhs) argument
130 Maybe(const Maybe<U>& rhs) argument
137 Maybe(Maybe&& rhs) argument
149 Maybe(Maybe<U>&& rhs) argument
160 operator =(const Maybe& rhs) argument
167 operator =(const Maybe<U>& rhs) argument
173 copy(const Maybe<U>& rhs) argument
195 operator =(Maybe&& rhs) argument
202 operator =(Maybe<U>&& rhs) argument
208 move(Maybe<U>&& rhs) argument
[all...]
/frameworks/native/include/binder/
H A DPersistableBundle.h96 friend bool operator==(const PersistableBundle& lhs, const PersistableBundle& rhs) { argument
97 return (lhs.mBoolMap == rhs.mBoolMap && lhs.mIntMap == rhs.mIntMap &&
98 lhs.mLongMap == rhs.mLongMap && lhs.mDoubleMap == rhs.mDoubleMap &&
99 lhs.mStringMap == rhs.mStringMap && lhs.mBoolVectorMap == rhs.mBoolVectorMap &&
100 lhs.mIntVectorMap == rhs.mIntVectorMap &&
101 lhs.mLongVectorMap == rhs.mLongVectorMap &&
102 lhs.mDoubleVectorMap == rhs
107 operator !=(const PersistableBundle& lhs, const PersistableBundle& rhs) argument
[all...]
/frameworks/native/include/ui/
H A DRegion.h40 Region(const Region& rhs);
41 explicit Region(const Rect& rhs);
46 Region& operator = (const Region& rhs);
65 Region& orSelf(const Rect& rhs);
66 Region& xorSelf(const Rect& rhs);
67 Region& andSelf(const Rect& rhs);
68 Region& subtractSelf(const Rect& rhs);
71 Region& orSelf(const Region& rhs);
72 Region& xorSelf(const Region& rhs);
73 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...]
/frameworks/native/libs/binder/
H A DIpPrefix.cpp155 bool operator==(const IpPrefix& lhs, const IpPrefix& rhs) argument
157 if (lhs.mIsIpv6 != rhs.mIsIpv6) {
161 if (lhs.mPrefixLength != rhs.mPrefixLength) {
166 return 0 == memcmp(lhs.mUnion.mIn6Addr.s6_addr, rhs.mUnion.mIn6Addr.s6_addr, sizeof(struct in6_addr));
169 return 0 == memcmp(&lhs.mUnion.mInAddr, &rhs.mUnion.mInAddr, sizeof(struct in_addr));
/frameworks/native/libs/binder/include/binder/
H A DPersistableBundle.h96 friend bool operator==(const PersistableBundle& lhs, const PersistableBundle& rhs) { argument
97 return (lhs.mBoolMap == rhs.mBoolMap && lhs.mIntMap == rhs.mIntMap &&
98 lhs.mLongMap == rhs.mLongMap && lhs.mDoubleMap == rhs.mDoubleMap &&
99 lhs.mStringMap == rhs.mStringMap && lhs.mBoolVectorMap == rhs.mBoolVectorMap &&
100 lhs.mIntVectorMap == rhs.mIntVectorMap &&
101 lhs.mLongVectorMap == rhs.mLongVectorMap &&
102 lhs.mDoubleVectorMap == rhs
107 operator !=(const PersistableBundle& lhs, const PersistableBundle& rhs) argument
[all...]
/frameworks/native/libs/ui/include/ui/
H A DRegion.h40 Region(const Region& rhs);
41 explicit Region(const Rect& rhs);
46 Region& operator = (const Region& rhs);
65 Region& orSelf(const Rect& rhs);
66 Region& xorSelf(const Rect& rhs);
67 Region& andSelf(const Rect& rhs);
68 Region& subtractSelf(const Rect& rhs);
71 Region& orSelf(const Region& rhs);
72 Region& xorSelf(const Region& rhs);
73 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...]
/frameworks/native/libs/ui/include_vndk/ui/
H A DRegion.h40 Region(const Region& rhs);
41 explicit Region(const Rect& rhs);
46 Region& operator = (const Region& rhs);
65 Region& orSelf(const Rect& rhs);
66 Region& xorSelf(const Rect& rhs);
67 Region& andSelf(const Rect& rhs);
68 Region& subtractSelf(const Rect& rhs);
71 Region& orSelf(const Region& rhs);
72 Region& xorSelf(const Region& rhs);
73 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...]
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
H A DLowpanCredential.cpp132 bool LowpanCredential::operator==(const LowpanCredential& rhs) argument
134 if (mMasterKey != rhs.mMasterKey) {
138 if (mMasterKeyIndex != rhs.mMasterKeyIndex) {
/frameworks/opt/net/wifi/service/jni/
H A Djni_helper.h32 JNIObject(const JNIObject<T>& rhs);
53 JNIObject<T>& operator = (const JNIObject<T>& rhs) { argument
55 mHelper = rhs.mHelper;
56 mObj = rhs.mObj;
65 JNIObject(const JNIObject<T2>& rhs); // NOLINT(implicit)
94 JNIObject<T>::JNIObject(const JNIObject<T>& rhs) argument
95 : mHelper(rhs.mHelper), mObj(NULL)
97 mObj = (T)mHelper.newLocalRef(rhs.mObj);
/frameworks/rs/support/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/include/media/
H A DMidiDeviceInfo.h59 friend bool operator==(const MidiDeviceInfo& lhs, const MidiDeviceInfo& rhs);
60 friend bool operator!=(const MidiDeviceInfo& lhs, const MidiDeviceInfo& rhs) { argument
61 return !(lhs == rhs);
H A DRingBuffer.h55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
81 bool operator==(const const_iterator& rhs);
83 bool operator!=(const const_iterator& rhs);
201 bool RingBuffer<T>::iterator::operator==(const iterator& rhs) { argument
202 return (mPtr + mPos) == (rhs.mPtr + rhs.mPos);
206 bool RingBuffer<T>::iterator::operator!=(const iterator& rhs) { argument
207 return (mPtr + mPos) != (rhs.mPtr + rhs
245 operator ==(const const_iterator& rhs) argument
250 operator !=(const const_iterator& rhs) argument
[all...]
/frameworks/av/media/libmedia/
H A DMidiDeviceInfo.cpp120 static inline bool areVectorsEqual(const Vector<String16>& lhs, const Vector<String16>& rhs) { argument
121 if (lhs.size() != rhs.size()) return false;
123 if (lhs[i] != rhs[i]) return false;
128 bool operator==(const MidiDeviceInfo& lhs, const MidiDeviceInfo& rhs) { argument
129 return (lhs.mType == rhs.mType && lhs.mId == rhs.mId &&
130 areVectorsEqual(lhs.mInputPortNames, rhs.mInputPortNames) &&
131 areVectorsEqual(lhs.mOutputPortNames, rhs.mOutputPortNames) &&
132 lhs.mProperties == rhs.mProperties &&
133 lhs.mIsPrivate == rhs
[all...]
/frameworks/av/media/libmedia/include/media/
H A DMidiDeviceInfo.h59 friend bool operator==(const MidiDeviceInfo& lhs, const MidiDeviceInfo& rhs);
60 friend bool operator!=(const MidiDeviceInfo& lhs, const MidiDeviceInfo& rhs) { argument
61 return !(lhs == rhs);
H A DRingBuffer.h55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
81 bool operator==(const const_iterator& rhs);
83 bool operator!=(const const_iterator& rhs);
201 bool RingBuffer<T>::iterator::operator==(const iterator& rhs) { argument
202 return (mPtr + mPos) == (rhs.mPtr + rhs.mPos);
206 bool RingBuffer<T>::iterator::operator!=(const iterator& rhs) { argument
207 return (mPtr + mPos) != (rhs.mPtr + rhs
245 operator ==(const const_iterator& rhs) argument
250 operator !=(const const_iterator& rhs) argument
[all...]
/frameworks/av/services/audioflinger/
H A DFastMixerDumpState.h40 FastTrackUnderruns& operator=(const FastTrackUnderruns& rhs) argument
41 { if (this != &rhs) mAtomic = rhs.mAtomic; return *this; }
/frameworks/base/cmds/statsd/src/external/
H A Dpuller_util.cpp33 bool shouldMerge(shared_ptr<LogEvent>& lhs, shared_ptr<LogEvent>& rhs, argument
36 const auto& r_values = rhs->getValues();
48 // merge rhs to lhs
51 bool mergeEvent(shared_ptr<LogEvent>& lhs, shared_ptr<LogEvent>& rhs, argument
54 const auto& child_values = rhs->getValues();
/frameworks/base/core/java/android/net/
H A DIpSecAlgorithm.java301 public static boolean equals(IpSecAlgorithm lhs, IpSecAlgorithm rhs) { argument
302 if (lhs == null || rhs == null) return (lhs == rhs);
303 return (lhs.mName.equals(rhs.mName)
304 && Arrays.equals(lhs.mKey, rhs.mKey)
305 && lhs.mTruncLenBits == rhs.mTruncLenBits);
/frameworks/base/libs/hwui/
H A DGradientCache.h61 static int compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs);
85 inline int strictly_order_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) { argument
86 return GradientCacheEntry::compare(lhs, rhs) < 0;
89 inline int compare_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) { argument
90 return GradientCacheEntry::compare(lhs, rhs);
H A DPatchCache.cpp59 const PatchCache::PatchDescription& rhs) {
60 return memcmp(&lhs, &rhs, sizeof(PatchDescription));
58 compare(const PatchCache::PatchDescription& lhs, const PatchCache::PatchDescription& rhs) argument
/frameworks/base/libs/hwui/font/
H A DFont.h57 static int compare(const FontDescription& lhs, const FontDescription& rhs);
146 inline int strictly_order_type(const Font::FontDescription& lhs, const Font::FontDescription& rhs) { argument
147 return Font::FontDescription::compare(lhs, rhs) < 0;
150 inline int compare_type(const Font::FontDescription& lhs, const Font::FontDescription& rhs) { argument
151 return Font::FontDescription::compare(lhs, rhs);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
H A DInputMethodPreference.java291 public int compareTo(final InputMethodPreference rhs, final Collator collator) { argument
292 if (this == rhs) {
295 if (mHasPriorityInSorting != rhs.mHasPriorityInSorting) {
300 final CharSequence rhsTitle = rhs.getTitle();
/frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
H A DCameraTooActivity.java113 public int compare(Size lhs, Size rhs) { argument
116 (long) rhs.getWidth() * rhs.getHeight());
/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);

Completed in 389 milliseconds

1234567