Searched refs:other (Results 101 - 125 of 648) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/servertransaction/
H A DLaunchActivityItem.java167 final LaunchActivityItem other = (LaunchActivityItem) o;
168 final boolean intentsEqual = (mIntent == null && other.mIntent == null)
169 || (mIntent != null && mIntent.filterEquals(other.mIntent));
170 return intentsEqual && mIdent == other.mIdent
171 && activityInfoEqual(other.mInfo) && Objects.equals(mCurConfig, other.mCurConfig)
172 && Objects.equals(mOverrideConfig, other.mOverrideConfig)
173 && Objects.equals(mCompatInfo, other.mCompatInfo)
174 && Objects.equals(mReferrer, other.mReferrer)
175 && mProcState == other
202 activityInfoEqual(ActivityInfo other) argument
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dbuffer_wrapper.h40 BufferWrapper(const BufferWrapper& other) { *this = other; } argument
42 BufferWrapper(BufferWrapper&& other) { *this = std::move(other); } argument
44 BufferWrapper& operator=(const BufferWrapper& other) { argument
45 if (&other == this) {
48 buffer_ = other.buffer_;
49 capacity_ = other.capacity_;
50 end_ = other.end_;
56 BufferWrapper& operator=(BufferWrapper&& other) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageCleanItem.java41 PackageCleanItem other = (PackageCleanItem)obj;
42 return userId == other.userId && packageName.equals(other.packageName)
43 && andCode == other.andCode;
H A DVerificationParams.java114 final VerificationParams other = (VerificationParams) o;
117 if (other.mVerificationURI != null) {
120 } else if (!mVerificationURI.equals(other.mVerificationURI)) {
125 if (other.mOriginatingURI != null) {
128 } else if (!mOriginatingURI.equals(other.mOriginatingURI)) {
133 if (other.mReferrer != null) {
136 } else if (!mReferrer.equals(other.mReferrer)) {
140 if (mOriginatingUid != other.mOriginatingUid) {
144 if (mInstallerUid != other.mInstallerUid) {
/frameworks/base/core/java/android/hardware/camera2/params/
H A DOisSample.java103 final OisSample other = (OisSample) obj;
104 return mTimestampNs == other.mTimestampNs
105 && mXShift == other.mXShift
106 && mYShift == other.mYShift;
H A DRggbChannelVector.java173 final RggbChannelVector other = (RggbChannelVector) obj;
174 return mRed == other.mRed &&
175 mGreenEven == other.mGreenEven &&
176 mGreenOdd == other.mGreenOdd &&
177 mBlue == other.mBlue;
/frameworks/base/libs/hwui/font/
H A DFontUtil.h30 #error TEXTURE_BORDER_SIZE other than 1 is not currently supported
/frameworks/base/media/java/android/media/
H A DAudioDevicePort.java86 AudioDevicePort other = (AudioDevicePort)o;
87 if (mType != other.type()) {
90 if (mAddress == null && other.address() != null) {
93 if (!mAddress.equals(other.address())) {
H A DAudioFocusInfo.java161 AudioFocusInfo other = (AudioFocusInfo) obj;
162 if (!mAttributes.equals(other.mAttributes)) {
165 if (mClientUid != other.mClientUid) {
168 if (!mClientId.equals(other.mClientId)) {
171 if (!mPackageName.equals(other.mPackageName)) {
174 if (mGainRequest != other.mGainRequest) {
177 if (mLossReceived != other.mLossReceived) {
180 if (mFlags != other.mFlags) {
183 if (mSdkTarget != other.mSdkTarget) {
H A DRemoteDisplayState.java119 public RemoteDisplayInfo(RemoteDisplayInfo other) { argument
120 id = other.id;
121 name = other.name;
122 description = other.description;
123 status = other.status;
124 volume = other.volume;
125 volumeMax = other.volumeMax;
126 volumeHandling = other.volumeHandling;
127 presentationDisplayId = other.presentationDisplayId;
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
H A DTaskKeyStrongCache.java34 final void copyEntries(TaskKeyStrongCache<V> other) { argument
35 for (int i = other.mKeys.size() - 1; i >= 0; i--) {
36 TaskKey key = other.mKeys.valueAt(i);
37 put(key, other.mCache.get(key.id));
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightState.java87 public boolean equals(TwilightState other) { argument
88 return other != null
89 && mSunriseTimeMillis == other.mSunriseTimeMillis
90 && mSunsetTimeMillis == other.mSunsetTimeMillis;
/frameworks/base/telephony/java/android/telephony/data/
H A DDataCallResponse.java202 DataCallResponse other = (DataCallResponse) o;
203 return this.mStatus == other.mStatus
204 && this.mSuggestedRetryTime == other.mSuggestedRetryTime
205 && this.mCid == other.mCid
206 && this.mActive == other.mActive
207 && this.mType.equals(other.mType)
208 && this.mIfname.equals(other.mIfname)
209 && mAddresses.size() == other.mAddresses.size()
210 && mAddresses.containsAll(other.mAddresses)
211 && mDnses.size() == other
[all...]
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp71 ResolveInfo::Visibility other = ResolveInfo::Default; local
74 name, isDyn, type, desc, binding, size, other, NULL, result1);
83 EXPECT_EQ(other, result1.info->visibility());
87 name, isDyn, type, desc, binding, size, other, NULL, result2);
96 EXPECT_EQ(other, result1.info->visibility());
108 ResolveInfo::Visibility other = ResolveInfo::Default; local
111 name, isDyn, type, desc, binding, size, other, NULL, result1);
120 EXPECT_EQ(other, result1.info->visibility());
124 name, isDyn, type, desc, binding, size, other, NULL, result2);
135 other,
150 uint8_t other = 0; local
176 uint8_t other = 0; local
[all...]
/frameworks/support/navigation/common/ktx/src/main/java/androidx/navigation/
H A DNavGraph.kt52 * @param other collection of destinations to add. All destinations will be removed from the
55 inline operator fun NavGraph.plusAssign(other: NavGraph) {
56 addAll(other)
/frameworks/base/core/java/android/bluetooth/le/
H A DPeriodicAdvertisingReport.java158 PeriodicAdvertisingReport other = (PeriodicAdvertisingReport) obj;
159 return (mSyncHandle == other.mSyncHandle)
160 && (mTxPower == other.mTxPower)
161 && (mRssi == other.mRssi)
162 && (mDataStatus == other.mDataStatus)
163 && Objects.equals(mData, other.mData)
164 && (mTimestampNanos == other.mTimestampNanos);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPortInfo.java181 final HdmiPortInfo other = (HdmiPortInfo) o;
182 return mId == other.mId && mType == other.mType && mAddress == other.mAddress
183 && mCecSupported == other.mCecSupported && mArcSupported == other.mArcSupported
184 && mMhlSupported == other.mMhlSupported;
/frameworks/base/core/java/android/speech/tts/
H A DVoice.java221 Voice other = (Voice) obj;
223 if (other.mFeatures != null) {
226 } else if (!mFeatures.equals(other.mFeatures)) {
229 if (mLatency != other.mLatency) {
233 if (other.mLocale != null) {
236 } else if (!mLocale.equals(other.mLocale)) {
240 if (other.mName != null) {
243 } else if (!mName.equals(other.mName)) {
246 if (mQuality != other.mQuality) {
249 if (mRequiresNetworkConnection != other
[all...]
/frameworks/base/libs/hwui/tests/unit/
H A DThreadBaseTests.cpp100 Counter(const Counter& other) : mCount(other.mCount) { argument
104 Counter(Counter&& other) : mCount(other.mCount) { argument
105 other.mCount = nullptr;
109 Counter& operator=(const Counter& other) { argument
110 mCount = other.mCount;
115 Counter& operator=(Counter&& other) { argument
116 mCount = other.mCount;
117 other
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandDetails.java44 public boolean compareTo(CommandDetails other) { argument
45 return (this.compRequired == other.compRequired &&
46 this.commandNumber == other.commandNumber &&
47 this.commandQualifier == other.commandQualifier &&
48 this.typeOfCommand == other.typeOfCommand);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothCodecConfig.java94 BluetoothCodecConfig other = (BluetoothCodecConfig) o;
95 return (other.mCodecType == mCodecType
96 && other.mCodecPriority == mCodecPriority
97 && other.mSampleRate == mSampleRate
98 && other.mBitsPerSample == mBitsPerSample
99 && other.mChannelMode == mChannelMode
100 && other.mCodecSpecific1 == mCodecSpecific1
101 && other.mCodecSpecific2 == mCodecSpecific2
102 && other.mCodecSpecific3 == mCodecSpecific3
103 && other
400 sameAudioFeedingParameters(BluetoothCodecConfig other) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java81 public void copyFrom(TaskViewTransform other) { argument
82 translationZ = other.translationZ;
83 scale = other.scale;
84 alpha = other.alpha;
85 visible = other.visible;
86 dimAlpha = other.dimAlpha;
87 viewOutlineAlpha = other.viewOutlineAlpha;
88 rect.set(other.rect);
92 * @return whether {@param other} is the same transform as this
94 public boolean isSame(TaskViewTransform other) { argument
[all...]
/frameworks/base/libs/hwui/
H A DProfileData.cpp80 void ProfileData::mergeWith(const ProfileData& other) { argument
86 for (size_t i = 0; i < other.mJankTypeCounts.size(); i++) {
88 mJankTypeCounts[i] += other.mJankTypeCounts[i];
90 for (size_t i = 0; i < other.mFrameCounts.size(); i++) {
92 mFrameCounts[i] += other.mFrameCounts[i];
95 mJankFrameCount += other.mJankFrameCount;
97 mTotalFrameCount += other.mTotalFrameCount;
98 if (mStatStartTime > other.mStatStartTime || mStatStartTime == 0) {
99 mStatStartTime = other.mStatStartTime;
/frameworks/minikin/libs/minikin/
H A DLocale.h89 bool operator==(const Locale other) const {
90 return !isUnsupported() && isEqualScript(other) && mLanguage == other.mLanguage &&
91 mRegion == other.mRegion && mVariant == other.mVariant &&
92 mEmojiStyle == other.mEmojiStyle;
95 bool operator!=(const Locale other) const { return !(*this == other); }
111 bool isEqualScript(const Locale& other) const;
/frameworks/base/core/java/android/accounts/
H A DAccount.java51 final Account other = (Account)o;
52 return name.equals(other.name) && type.equals(other.type);
69 public Account(@NonNull Account other, @NonNull String accessId) { argument
70 this(other.name, other.type, accessId);

Completed in 592 milliseconds

1234567891011>>