Searched defs:equals (Results 51 - 75 of 351) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java96 public static boolean equals(CharSequence a, CharSequence b) { method in class:CharSequences
/frameworks/base/graphics/java/android/graphics/
H A DPorterDuffColorFilter.java110 public boolean equals(Object object) { method in class:PorterDuffColorFilter
/frameworks/base/media/java/android/media/
H A DAudioMixPort.java58 public boolean equals(Object o) { method in class:AudioMixPort
67 return super.equals(o);
H A DVolumePolicy.java64 public boolean equals(Object o) { method in class:VolumePolicy
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.java49 public boolean equals(Object o) { method in class:MediaProjectionInfo
52 return Objects.equals(other.mPackageName, mPackageName)
53 && Objects.equals(other.mUserHandle, mUserHandle);
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DRelation.java94 return getKind().equals(relation.getKind()) && getDetail().equals(relation.getDetail());
109 // equals() and hashCode() are generated by Android Studio.
111 public boolean equals(Object o) { method in class:Relation
121 if (mDetail != null ? !mDetail.equals(relation.mDetail) : relation.mDetail != null) {
124 if (mKind != null ? !mKind.equals(relation.mKind) : relation.mKind != null) {
H A DStatement.java98 public boolean equals(Object o) { method in class:Statement
108 if (!mRelation.equals(statement.mRelation)) {
111 if (!mTarget.equals(statement.mTarget)) {
114 if (!mSource.equals(statement.mSource)) {
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrength.java82 public abstract boolean equals (Object o); method in class:CellSignalStrength
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DListTestCaseNames.java84 public boolean equals(Object otherObj) { method in class:ListTestCaseNames.TestDescriptor
87 return otherDesc.getClassName().equals(this.getClassName()) &&
88 otherDesc.getTestName().equals(this.getTestName());
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DObjects.java46 * the result of {@link Arrays#equals} if both arguments are primitive arrays,
48 * and the result of {@link #equals} otherwise.
56 return Arrays.equals((boolean[]) a, (boolean[]) b);
58 return Arrays.equals((byte[]) a, (byte[]) b);
60 return Arrays.equals((char[]) a, (char[]) b);
62 return Arrays.equals((double[]) a, (double[]) b);
64 return Arrays.equals((float[]) a, (float[]) b);
66 return Arrays.equals((int[]) a, (int[]) b);
68 return Arrays.equals((long[]) a, (long[]) b);
70 return Arrays.equals((shor
78 public static boolean equals(Object a, Object b) { method in class:Objects
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationField.java73 public boolean equals(Object obj) { method in class:AnnotationField
76 return mDeclaredClass.equals(that.mDeclaredClass) && AnnotationAnalyzer.get()
/frameworks/native/opengl/tools/glgen/src/
H A DCType.java57 if(baseType.equals("EGLContext")
58 || baseType.equals("EGLConfig")
59 || baseType.equals("EGLSurface")
60 || baseType.equals("EGLDisplay")) {
68 return baseType.equals("GLvoid") ||
69 baseType.equals("void");
74 (baseType.equals("char") || baseType.equals("GLchar"));
109 public boolean equals(Object o) { method in class:CType
112 return baseType.equals(
[all...]
/frameworks/opt/bitmap/sample/src/com/example/bitmapsample/
H A DBitmapRequestKeyImpl.java45 public boolean equals(Object o) { method in class:BitmapRequestKeyImpl
50 return mUriString.equals(other.mUriString);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DResourceRequestKey.java66 public boolean equals(Object o) { method in class:ResourceRequestKey
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DIMSIParameter.java46 return mImsi.equals(fullIMSI);
74 public boolean equals(Object thatObject) { method in class:IMSIParameter
83 return mPrefix == that.mPrefix && mImsi.equals(that.mImsi);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DInnerAuthEAP.java42 public boolean equals(Object thatObject) { method in class:InnerAuthEAP
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNode.java123 public boolean equals(Object obj) { method in class:PropertyNode
130 if (propName == null || !propName.equals(node.propName)) {
132 } else if (!paramMap_TYPE.equals(node.paramMap_TYPE)) {
134 } else if (!paramMap_TYPE.equals(node.paramMap_TYPE)) {
136 } else if (!propGroupSet.equals(node.propGroupSet)) {
140 if (propValue_bytes != null && Arrays.equals(propValue_bytes, node.propValue_bytes)) {
143 if (!propValue.equals(node.propValue)) {
151 return (propValue_vector.equals(node.propValue_vector) ||
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DBaseObj.java138 public boolean equals(Object obj) { method in class:BaseObj
/frameworks/base/core/java/android/accounts/
H A DAuthenticatorDescription.java110 public boolean equals(Object o) { method in class:AuthenticatorDescription
114 return type.equals(other.type);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioConfig.java42 public boolean equals(Object o) { method in class:BluetoothAudioConfig
H A DBluetoothHealthAppConfiguration.java68 public boolean equals(Object o) { method in class:BluetoothHealthAppConfiguration
72 return mName.equals(config.getName()) &&
/frameworks/base/core/java/android/bluetooth/le/
H A DScanResult.java132 public boolean equals(Object obj) { method in class:ScanResult
140 return Objects.equals(mDevice, other.mDevice) && (mRssi == other.mRssi) &&
141 Objects.equals(mScanRecord, other.mScanRecord)
/frameworks/base/core/java/android/content/
H A DPeriodicSync.java118 public boolean equals(Object o) { method in class:PeriodicSync
126 return account.equals(other.account)
127 && authority.equals(other.authority)
147 if (!b1.get(key).equals(b2.get(key))) {
H A DSyncAdapterType.java24 * Value type that represents a SyncAdapterType. This object overrides {@link #equals} and
155 public boolean equals(Object o) { method in class:SyncAdapterType
160 return authority.equals(other.authority) && accountType.equals(other.accountType);
/frameworks/base/core/java/android/content/pm/
H A DManifestDigest.java96 public boolean equals(Object o) { method in class:ManifestDigest
103 return this == other || Arrays.equals(mDigest, other.mDigest);

Completed in 1394 milliseconds

1234567891011>>