Searched refs:equal (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/java/android/util/
H A DPair.java47 * equal
55 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
H A DMapCollections.java143 return Objects.equal(e.getKey(), colGetEntry(mIndex, 0))
144 && Objects.equal(e.getValue(), colGetEntry(mIndex, 1));
195 return Objects.equal(foundVal, e.getValue());
/frameworks/support/v4/java/android/support/v4/util/
H A DContainerHelpers.java40 public static boolean equal(Object a, Object b) { method in class:ContainerHelpers
H A DMapCollections.java141 return ContainerHelpers.equal(e.getKey(), colGetEntry(mIndex, 0))
142 && ContainerHelpers.equal(e.getValue(), colGetEntry(mIndex, 1));
193 return ContainerHelpers.equal(foundVal, e.getValue());
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java237 && Objects.equal(name, other.name)
251 && Objects.equal(address, other.address)
254 && Objects.equal(ownerPackageName, other.ownerPackageName);
H A DLogicalDisplay.java193 if (!Objects.equal(mPrimaryDisplayDeviceInfo, deviceInfo)) {
H A DPersistentDataStore.java107 if (!Objects.equal(display.getDeviceAlias(), alias)) {
H A DWifiDisplayAdapter.java248 if (display != null && !Objects.equal(display.getDeviceAlias(), alias)) {
H A DWifiDisplayController.java947 if (!Objects.equal(mAdvertisedDisplay, display)
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.java143 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java259 && Objects.equal(address, other.address)
260 && Objects.equal(name, other.name)
282 && Objects.equal(ownerPackageName, other.ownerPackageName);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s36 ; * equal to predQP especially when the current block and
44 ; * performed. It is equal to ac_pred_flag in the bit
H A DomxVCM4P2_DecodePadMV_PVOP_s.s38 ; * [in] fcodeForward a code equal to vop_fcode_forward in MPEG-4
41 ; * is not equal to OMX_VC_INTER4V, the destination
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp97 bool equal = !strcmp(BC_EXT_STR, exts); local
102 if (equal || atStart || atEnd || inMiddle) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s38 ; * [in] fcodeForward a code equal to vop_fcode_forward in MPEG-4
41 ; * is not equal to OMX_VC_INTER4V, the destination
H A DomxVCM4P2_PredictReconCoefIntra_s.s36 ; * equal to predQP especially when the current block and
44 ; * performed. It is equal to ac_pred_flag in the bit
/frameworks/base/services/core/java/com/android/server/input/
H A DPersistentDataStore.java338 if (Objects.equal(mCurrentKeyboardLayout, keyboardLayout)) {
377 if (Objects.equal(mCurrentKeyboardLayout, removedKeyboardLayout)) {
H A DInputManagerService.java1087 && !Objects.equal(oldLayout,
1121 if (removed && !Objects.equal(oldLayout,
/frameworks/base/test-runner/src/android/test/
H A DMoreAsserts.java60 * Asserts that {@code actual} is not equal {@code unexpected}, according
65 if (equal(unexpected, actual)) {
187 * {@code null} will be considered equal to {@code null} (unlike SQL).
464 * equal if expectedResult is true. (hashCode() is not tested if
465 * expectedResult is false, as unequal objects can have equal hashCodes.)
469 * @param expectedResult True if the objects should compare equal,
485 + "to be equal to null?", expectedResult);
497 "hashCode() values for equal objects should be the same";
578 private static boolean equal(Object a, Object b) { method in class:MoreAsserts
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightService.java140 if (!Objects.equal(mTwilightState, state)) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouter.java683 static <T> boolean equal(T a, T b) { method in class:MediaRouter
1182 if (!equal(mName, descriptor.getName())) {
1186 if (!equal(mDescription, descriptor.getDescription())) {
1228 if (!equal(mExtras, descriptor.getExtras())) {
/frameworks/native/libs/gui/
H A DGLConsumer.cpp100 bool equal = !strcmp(CROP_EXT_STR, exts); local
105 return equal || atStart || atEnd || inMiddle;
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java346 if (Objects.equal(mCurrentDreamName, name)
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseGeneralTest.java209 private void phoneNumberCompare(String phone1, String phone2, boolean equal, argument
218 "THEN 'equal' ELSE 'not equal' END",
224 if (equal) {
226 "equal", cursor.getString(0));
229 "not equal", cursor.getString(0));
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java167 return Objects.equal(p.first, first) && Objects.equal(p.second, second);

Completed in 1426 milliseconds

12