Searched refs:that (Results 1 - 25 of 258) sorted by relevance

1234567891011

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DLegacyPasspointConfig.java49 LegacyPasspointConfig that = (LegacyPasspointConfig) thatObject;
50 return TextUtils.equals(mFqdn, that.mFqdn)
51 && TextUtils.equals(mFriendlyName, that.mFriendlyName)
52 && Arrays.equals(mRoamingConsortiumOis, that.mRoamingConsortiumOis)
53 && TextUtils.equals(mRealm, that.mRealm)
54 && TextUtils.equals(mImsi, that.mImsi);
H A DANQPNetworkKey.java22 * Unique key for identifying APs that will contain the same ANQP information.
87 ANQPNetworkKey that = (ANQPNetworkKey) thatObject;
88 return TextUtils.equals(that.mSSID, mSSID)
89 && that.mBSSID == mBSSID
90 && that.mHESSID == mHESSID
91 && that.mAnqpDomainID == mAnqpDomainID;
/frameworks/base/cmds/statsd/src/
H A DFieldValue.h47 * Field is a wrapper class for 2 integers that represents the field of a log element in its Atom
67 * The first bit of each 8bits field is reserved to mark if the item is the last item at that level
164 inline bool operator==(const Field& that) const {
165 return mTag == that.getTag() && mField == that.getField();
168 inline bool operator!=(const Field& that) const {
169 return mTag != that.getTag() || mField != that.getField();
172 bool operator<(const Field& that) const {
173 if (mTag != that
[all...]
/frameworks/base/cmds/statsd/src/config/
H A DConfigKey.h36 explicit ConfigKey(const ConfigKey& that);
47 inline bool operator<(const ConfigKey& that) const {
48 if (mUid < that.mUid) {
51 if (mUid > that.mUid) {
54 return mId < that.mId;
57 inline bool operator==(const ConfigKey& that) const {
58 return mUid == that.mUid && mId == that.mId;
/frameworks/base/opengl/java/android/opengl/
H A DEGLConfig.java34 EGLConfig that = (EGLConfig) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLContext.java34 EGLContext that = (EGLContext) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLDisplay.java34 EGLDisplay that = (EGLDisplay) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLSurface.java34 EGLSurface that = (EGLSurface) o;
35 return getNativeHandle() == that.getNativeHandle();
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLConfig.java34 EGLConfig that = (EGLConfig) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLContext.java34 EGLContext that = (EGLContext) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLDisplay.java34 EGLDisplay that = (EGLDisplay) o;
35 return getNativeHandle() == that.getNativeHandle();
H A DEGLSurface.java34 EGLSurface that = (EGLSurface) o;
35 return getNativeHandle() == that.getNativeHandle();
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
H A DNameAndLastName.java43 NameAndLastName that = (NameAndLastName) o;
45 if (mName != null ? !mName.equals(that.mName) : that.mName != null) return false;
46 return mLastName != null ? mLastName.equals(that.mLastName) : that.mLastName == null;
H A DCoordinates.java28 Coordinates that = (Coordinates) o;
30 if (Double.compare(that.lat, lat) != 0) return false;
31 return Double.compare(that.lng, lng) == 0;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DMatrix.java58 * @param that is the source Matrix.
60 public Matrix(Matrix that) { argument
61 n = that.n;
62 m = that.m;
63 mem = new double[that.mem.length];
65 mem[i] = that.mem[i];
96 * Forms the sum of two matrices, this and that
98 * @param that is the other matrix
99 * @return newly allocated matrix representing the sum of this and that
102 public Matrix plus(Matrix that) { argument
115 plus(Matrix that, Matrix result) argument
132 minus(Matrix that) argument
144 minus(Matrix that, Matrix result) argument
189 dot(Matrix that) argument
203 dot(Matrix that, Matrix result) argument
329 dotTranspose(Matrix that) argument
343 dotTranspose(Matrix that, Matrix result) argument
363 equals(Object that) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DIntentFilterVerificationKey.java45 IntentFilterVerificationKey that = (IntentFilterVerificationKey) o;
47 if (domains != null ? !domains.equals(that.domains) : that.domains != null) return false;
48 if (className != null ? !className.equals(that.className) : that.className != null)
50 if (packageName != null ? !packageName.equals(that.packageName) : that.packageName != null)
/frameworks/base/tools/stats_log_api_gen/
H A DCollation.h67 inline AtomField(const AtomField& that) :name(that.name), argument
68 javaType(that.javaType),
69 enumValues(that.enumValues) {}
90 AtomDecl(const AtomDecl& that);
94 inline bool operator<(const AtomDecl& that) const {
95 return (code == that.code) ? (name < that.name) : (code < that.code);
/frameworks/base/services/core/java/com/android/server/timezone/
H A DPackageVersions.java41 PackageVersions that = (PackageVersions) o;
43 if (mUpdateAppVersion != that.mUpdateAppVersion) {
46 return mDataAppVersion == that.mDataAppVersion;
/frameworks/base/media/java/android/media/
H A DMediaTimestamp.java20 * An immutable object that represents the linear correlation between the media time
22 * of an anchor frame and the system time when that frame was presented or is committed
25 * The phrase "present" means that audio/video produced on device is detectable by an external
96 final MediaTimestamp that = (MediaTimestamp) obj;
97 return (this.mediaTimeUs == that.mediaTimeUs)
98 && (this.nanoTime == that.nanoTime)
99 && (this.clockRate == that.clockRate);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
H A DTimeStampedValue.java51 TimeStampedValue<?> that = (TimeStampedValue<?>) o;
53 if (mElapsedRealtime != that.mElapsedRealtime) {
56 return mValue != null ? mValue.equals(that.mValue) : that.mValue == null;
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java33 EGLDisplayImpl that = (EGLDisplayImpl) o;
35 return mEGLDisplay == that.mEGLDisplay;
/frameworks/support/work/workmanager/src/main/java/androidx/work/
H A DWorkStatus.java28 * tags. Note that output is only available for terminal states ({@link State#SUCCEEDED} and
71 WorkStatus that = (WorkStatus) o;
73 if (mId != null ? !mId.equals(that.mId) : that.mId != null) return false;
74 if (mState != that.mState) return false;
75 if (mOutputData != null ? !mOutputData.equals(that.mOutputData)
76 : that.mOutputData != null) {
79 return mTags != null ? mTags.equals(that.mTags) : that.mTags == null;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccSlotStatus.java98 IccSlotStatus that = (IccSlotStatus) obj;
99 return (cardState == that.cardState)
100 && (slotState == that.slotState)
101 && (logicalSlotIndex == that.logicalSlotIndex)
102 && (TextUtils.equals(atr, that.atr))
103 && (TextUtils.equals(iccid, that.iccid));
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DPssTable.java46 public void mergeStats(PssTable that) { argument
47 final int N = that.getKeyCount();
49 final int key = that.getKeyAt(i);
51 mergeStats(state, (int)that.getValue(key, PSS_SAMPLE_COUNT),
52 that.getValue(key, PSS_MINIMUM),
53 that.getValue(key, PSS_AVERAGE),
54 that.getValue(key, PSS_MAXIMUM),
55 that.getValue(key, PSS_USS_MINIMUM),
56 that.getValue(key, PSS_USS_AVERAGE),
57 that
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DHSWanMetricsElement.java150 HSWanMetricsElement that = (HSWanMetricsElement) thatObject;
151 return mStatus == that.mStatus
152 && mSymmetric == that.mSymmetric
153 && mCapped == that.mCapped
154 && mDownlinkSpeed == that.mDownlinkSpeed
155 && mUplinkSpeed == that.mUplinkSpeed
156 && mDownlinkLoad == that.mDownlinkLoad
157 && mUplinkLoad == that.mUplinkLoad
158 && mLMD == that.mLMD;

Completed in 1602 milliseconds

1234567891011