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

12

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java303 if (!Objects.equal(name, other.name)
304 || !Objects.equal(uniqueId, other.uniqueId)
311 || !Objects.equal(hdrCapabilities, other.hdrCapabilities)
321 || !Objects.equal(address, other.address)
323 || !Objects.equal(ownerPackageName, other.ownerPackageName)) {
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DMockUtils.java43 return Objects.equal(((UserHandle) item).getIdentifier(), userId);
59 return Objects.equal(((Intent) item).getComponent(), component);
75 return Objects.equal(((Intent) item).getAction(), action);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DCustomizeTileView.java48 if (!Objects.equal(label, mAppLabel.getText())) {
/frameworks/support/compat/java/android/support/v4/util/
H A DContainerHelpers.java40 public static boolean equal(Object a, Object b) { method in class:ContainerHelpers
H A DMapCollections.java143 return ContainerHelpers.equal(e.getKey(), colGetEntry(mIndex, 0))
144 && ContainerHelpers.equal(e.getValue(), colGetEntry(mIndex, 1));
195 return ContainerHelpers.equal(foundVal, e.getValue());
/frameworks/base/core/java/com/android/internal/util/
H A DBitUtils.java51 return Objects.equal(a, b);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServiceManager.java251 if (!Objects.equal(pkgName, component.getPackageName())) {
263 if (Objects.equal(info.serviceInfo.packageName, component.getPackageName())
264 && Objects.equal(info.serviceInfo.name, component.getClassName())) {
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.java143 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp94 bool equal = !strcmp(BC_EXT_STR, exts); local
99 if (equal || atStart || atEnd || inMiddle) {
/frameworks/base/core/java/android/util/
H A DMapCollections.java146 return Objects.equal(e.getKey(), colGetEntry(mIndex, 0))
147 && Objects.equal(e.getValue(), colGetEntry(mIndex, 1));
198 return Objects.equal(foundVal, e.getValue());
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionVisitor.java130 if (Objects.equal(item.getText(), ",")) {
312 if (Objects.equal(item.getText(), ",")) {
392 if (Objects.equal(item.getText(), ",")) {
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java283 && Objects.equal(address, other.address)
284 && Objects.equal(uniqueId, other.uniqueId)
302 && Objects.equal(hdrCapabilities, other.hdrCapabilities)
310 && Objects.equal(ownerPackageName, other.ownerPackageName)
/frameworks/base/core/java/com/android/internal/widget/
H A DCachingIconView.java129 && Objects.equal(iconPackage, mLastPackage);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileView.java96 if (!Objects.equal(mLabel.getText(), state.label) || mState != state.state) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DRadioListPreference.java127 pref.setChecked(Objects.equal(current, values[i]));
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s50 ; * equal to predQP especially when the current block and
58 ; * performed. It is equal to ac_pred_flag in the bit
H A DomxVCM4P2_DecodePadMV_PVOP_s.s52 ; * [in] fcodeForward a code equal to vop_fcode_forward in MPEG-4
55 ; * is not equal to OMX_VC_INTER4V, the destination
/frameworks/native/libs/math/tests/
H A Dvec_test.cpp194 EXPECT_TRUE(all(equal(v0, v0)));
197 EXPECT_FALSE(any(equal(v0, v1)));
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp38 bool equal = !strcmp(PIXEL_FORMAT_FLOAT, exts); local
43 return equal || atStart || atEnd || inMiddle;
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java927 if (!Objects.equal(value, this.defaultValue)
946 if (Objects.equal(value, this.value)
947 && Objects.equal(defaultValue, this.defaultValue)
948 && Objects.equal(packageName, this.packageName)
949 && Objects.equal(tag, this.tag)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s52 ; * [in] fcodeForward a code equal to vop_fcode_forward in MPEG-4
55 ; * is not equal to OMX_VC_INTER4V, the destination
H A DomxVCM4P2_PredictReconCoefIntra_s.s50 ; * equal to predQP especially when the current block and
58 ; * performed. It is equal to ac_pred_flag in the bit
/frameworks/base/test-runner/src/android/test/
H A DMoreAsserts.java63 * Asserts that {@code actual} is not equal {@code unexpected}, according
68 if (equal(unexpected, actual)) {
190 * {@code null} will be considered equal to {@code null} (unlike SQL).
467 * equal if expectedResult is true. (hashCode() is not tested if
468 * expectedResult is false, as unequal objects can have equal hashCodes.)
472 * @param expectedResult True if the objects should compare equal,
488 + "to be equal to null?", expectedResult);
500 "hashCode() values for equal objects should be the same";
581 private static boolean equal(Object a, Object b) { method in class:MoreAsserts
/frameworks/rs/script_api/
H A Drs_value_types.spec54 equal to the number of entries named.
/frameworks/base/tools/aapt2/
H A DResourceValues.cpp407 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(),
669 return std::equal(sorted_a.begin(), sorted_a.end(), sorted_b.begin(),
769 return std::equal(items.begin(), items.end(), other->items.begin(),
863 return std::equal(entries.begin(), entries.end(), other->entries.begin(),

Completed in 3507 milliseconds

12