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

12345678910

/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/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/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/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/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/vo/
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/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java33 EGLDisplayImpl that = (EGLDisplayImpl) o;
35 return mEGLDisplay == that.mEGLDisplay;
H A DEGLContextImpl.java41 EGLContextImpl that = (EGLContextImpl) o;
43 return mEGLContext == that.mEGLContext;
H A DEGLSurfaceImpl.java35 EGLSurfaceImpl that = (EGLSurfaceImpl) o;
37 return mEGLSurface == that.mEGLSurface;
/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
161 dot(Matrix that) argument
175 dot(Matrix that, Matrix result) argument
299 equals(Object that) argument
[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;
H A DRawByteElement.java62 RawByteElement that = (RawByteElement) thatObject;
63 return getID() == that.getID() && Arrays.equals(mPayload, that.mPayload);
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DIconInfo.java65 IconInfo that = (IconInfo) thatObject;
66 return mHeight == that.mHeight &&
67 mWidth == that.mWidth &&
68 mFileName.equals(that.mFileName) &&
69 mIconType.equals(that.mIconType) &&
70 mLanguage.equals(that.mLanguage);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java57 * Indicates that the widget can be displayed on the home screen. This is the default value.
62 * Indicates that the widget can be displayed on the keyguard.
67 * Indicates that the widget can be displayed within a space reserved for the search box.
118 * How often, in milliseconds, that this AppWidget wants to be updated.
149 * The activity to launch that will configure the AppWidget.
203 * A widget which is displayed on both needs to ensure that it follows the design guidelines
343 AppWidgetProviderInfo that = new AppWidgetProviderInfo();
344 that.provider = this.provider == null ? null : this.provider.clone();
345 that.minWidth = this.minWidth;
346 that
[all...]
/frameworks/base/libs/incident/src/
H A DIncidentReportArgs.cpp32 IncidentReportArgs::IncidentReportArgs(const IncidentReportArgs& that) argument
33 :mSections(that.mSections),
34 mHeaders(that.mHeaders),
35 mAll(that.mAll)
156 IncidentReportArgs::merge(const IncidentReportArgs& that) argument
160 } else if (that.mAll) {
164 for (set<int>::const_iterator it=that.mSections.begin();
165 it!=that.mSections.end(); it++) {
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/
H A DMutableMediaMetadata.java23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o;
47 return TextUtils.equals(trackId, that.trackId);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/
H A DMutableMediaMetadata.java23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o;
47 return TextUtils.equals(trackId, that.trackId);
/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java76 final InputDeviceIdentifier that = (InputDeviceIdentifier) o;
77 return ((mVendorId == that.mVendorId) && (mProductId == that.mProductId)
78 && TextUtils.equals(mDescriptor, that.mDescriptor));

Completed in 366 milliseconds

12345678910