Home
last modified time | relevance | path

Searched refs:two (Results 1 – 25 of 113) sorted by relevance

12345

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/util/
DBundleUtil.java44 public static boolean deepEquals(@Nullable Bundle one, @Nullable Bundle two) { in deepEquals() argument
45 if (one == null && two == null) { in deepEquals()
48 if (one == null || two == null) { in deepEquals()
51 if (one.size() != two.size()) { in deepEquals()
54 if (!one.keySet().equals(two.keySet())) { in deepEquals()
60 if (!bundleValueEquals(one.get(key), two.get(key))) { in deepEquals()
72 public static boolean bundleValueEquals(@Nullable Object one, @Nullable Object two) { in bundleValueEquals() argument
73 if (one == null && two == null) { in bundleValueEquals()
76 if (one == null || two == null) { in bundleValueEquals()
79 if (one.equals(two)) { in bundleValueEquals()
[all …]
/packages/modules/Connectivity/tests/common/java/android/net/
DNetworkTest.java129 Network two = new Network(2); in testGetNetworkHandle() local
134 assertNotEquals(0, two.hashCode()); in testGetNetworkHandle()
138 assertNotEquals(one.hashCode(), two.hashCode()); in testGetNetworkHandle()
140 assertNotEquals(two.hashCode(), three.hashCode()); in testGetNetworkHandle()
144 assertNotEquals(0, two.getNetworkHandle()); in testGetNetworkHandle()
148 assertNotEquals(one.getNetworkHandle(), two.getNetworkHandle()); in testGetNetworkHandle()
150 assertNotEquals(two.getNetworkHandle(), three.getNetworkHandle()); in testGetNetworkHandle()
154 assertNotEquals(two.hashCode(), two.getNetworkHandle()); in testGetNetworkHandle()
160 assertEquals(11995631629L, two.getNetworkHandle()); in testGetNetworkHandle()
/packages/modules/AppSearch/testing/coretests/src/android/app/appsearch/external/util/
DBundleUtilTest.java50 Bundle two = new Bundle(); in testDeepEquals_simple() local
51 two.putString("a", "a"); in testDeepEquals_simple()
53 assertThat(one).isNotEqualTo(two); in testDeepEquals_simple()
54 assertThat(BundleUtil.deepEquals(one, two)).isTrue(); in testDeepEquals_simple()
62 Bundle two = new Bundle(); in testDeepEquals_keyMismatch() local
63 two.putString("a", "a"); in testDeepEquals_keyMismatch()
64 two.putString("b", "b"); in testDeepEquals_keyMismatch()
65 assertThat(BundleUtil.deepEquals(one, two)).isFalse(); in testDeepEquals_keyMismatch()
96 Bundle two = new Bundle(); in testDeepEquals_nestedNotEquals() local
97 two.putBundle("b", one); in testDeepEquals_nestedNotEquals()
[all …]
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/storage/table/reader/
DLongValueTable.java48 static boolean equal(TableEntry one, Object two) { in equal() argument
49 if (one == null && two == null) { in equal()
52 if (!(two instanceof TableEntry) || one == null || one.getClass() != two.getClass()) { in equal()
55 TableEntry other = (TableEntry) two; in equal()
DIntValueTable.java50 static boolean equal(TableEntry one, Object two) { in equal() argument
51 if (one == null && two == null) { in equal()
54 if (!(two instanceof TableEntry) || one == null || one.getClass() != two.getClass()) { in equal()
57 TableEntry other = (TableEntry) two; in equal()
/packages/apps/Contacts/src/com/android/contacts/editor/
DRawContactDeltaComparator.java41 public int compare(RawContactDelta one, RawContactDelta two) { in compare() argument
43 if (one.equals(two)) { in compare()
51 String accountType2 = two.getValues().getAsString(RawContacts.ACCOUNT_TYPE); in compare()
52 String dataSet2 = two.getValues().getAsString(RawContacts.DATA_SET); in compare()
111 String twoAccount = two.getAccountName(); in compare()
122 Long twoId = two.getRawContactId(); in compare()
/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/
DRealLocationListeningAccountant.java277 private static Duration max(@NonNull Duration one, @NonNull Duration two) { in max() argument
278 return one.compareTo(two) >= 0 ? one : two; in max()
282 private static Duration min(@NonNull Duration one, @NonNull Duration two) { in min() argument
283 return one.compareTo(two) < 0 ? one : two; in min()
/packages/modules/GeoTZ/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/
DTypes.java176 private static boolean s2PolygonsEquals(List<S2Polygon> one, List<S2Polygon> two) { in s2PolygonsEquals() argument
177 if (one.size() != two.size()) { in s2PolygonsEquals()
182 S2Polygon twoPoly = two.get(polyIndex); in s2PolygonsEquals()
190 private static boolean s2PolygonEquals(S2Polygon one, S2Polygon two) { in s2PolygonEquals() argument
191 if (one.numLoops() != two.numLoops()) { in s2PolygonEquals()
197 S2Loop twoLoop = two.loop(loopIndex); in s2PolygonEquals()
205 private static boolean s2LoopEquals(S2Loop one, S2Loop two) { in s2LoopEquals() argument
206 if (one.numVertices() != two.numVertices()) { in s2LoopEquals()
212 S2Point twoPoint = two.vertex(vertexIndex); in s2LoopEquals()
336 private static boolean s2CellUnionEquals(S2CellUnion one, S2CellUnion two) { in s2CellUnionEquals() argument
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiChipAidlImplTest.java148 WifiDebugRingBufferStatus two = new WifiDebugRingBufferStatus(); in testRingBufferStatus() local
149 two.ringName = "Two"; in testRingBufferStatus()
150 two.flags = WifiDebugRingBufferFlags.HAS_ASCII_ENTRIES in testRingBufferStatus()
152 two.ringId = 4512470; in testRingBufferStatus()
153 two.sizeInBytes = 300; in testRingBufferStatus()
154 two.freeSizeInBytes = 42; in testRingBufferStatus()
155 two.verboseLevel = WifiDebugRingBufferVerboseLevel.DEFAULT; in testRingBufferStatus()
157 WifiDebugRingBufferStatus[] halBufferStatus = new WifiDebugRingBufferStatus[]{one, two}; in testRingBufferStatus()
163 assertEquals(two.ringId, actual.get(1).ringBufferId); in testRingBufferStatus()
DWifiChipHidlImplTest.java193 WifiDebugRingBufferStatus two = new WifiDebugRingBufferStatus(); in testRingBufferStatus() local
194 two.ringName = "Two"; in testRingBufferStatus()
195 two.flags = WifiDebugRingBufferFlags.HAS_ASCII_ENTRIES in testRingBufferStatus()
197 two.ringId = 4512470; in testRingBufferStatus()
198 two.sizeInBytes = 300; in testRingBufferStatus()
199 two.freeSizeInBytes = 42; in testRingBufferStatus()
200 two.verboseLevel = WifiDebugRingBufferVerboseLevel.DEFAULT; in testRingBufferStatus()
204 halBufferStatus.add(two); in testRingBufferStatus()
218 assertEquals(two.ringId, actual.get(1).ringBufferId); in testRingBufferStatus()
/packages/modules/Permission/tests/cts/role/
DTEST_MAPPING16 // TODO(b/238677748): These two tests currently fails on R base image
33 // TODO(b/238677748): These two tests currently fails on R base image
55 // TODO(b/238677748): These two tests currently fails on R base image
/packages/modules/Permission/framework-s/java/android/app/role/
DTEST_MAPPING19 // TODO(b/238677748): These two tests currently fails on R base image
39 // TODO(b/238677748): These two tests currently fails on R base image
64 // TODO(b/238677748): These two tests currently fails on R base image
/packages/modules/Permission/service/java/com/android/role/
DTEST_MAPPING27 // TODO(b/238677748): These two tests currently fails on R base image
47 // TODO(b/238677748): These two tests currently fails on R base image
80 // TODO(b/238677748): These two tests currently fails on R base image
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/role/
DTEST_MAPPING19 // TODO(b/238677748): These two tests currently fails on R base image
39 // TODO(b/238677748): These two tests currently fails on R base image
67 // TODO(b/238677748): These two tests currently fails on R base image
/packages/modules/GeoTZ/common/host/main/java/com/android/timezone/location/common/
DLicenseSupport.java103 private static void checkFilesIdentical(File one, File two) throws IOException { in checkFilesIdentical() argument
105 FileInputStream twoInput = new FileInputStream(two)) { in checkFilesIdentical()
110 throw new IllegalArgumentException("File " + one + " is not the same as " + two); in checkFilesIdentical()
/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DDialpadView.java80 private final int[] mButtonIds = new int[] {R.id.zero, R.id.one, R.id.two, R.id.three,
337 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
361 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
380 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
420 } else if (buttonId == R.id.two || buttonId == R.id.five || buttonId == R.id.eight in getKeyButtonAnimationDuration()
431 } else if (buttonId == R.id.two || buttonId == R.id.five || buttonId == R.id.eight in getKeyButtonAnimationDuration()
440 if (buttonId == R.id.one || buttonId == R.id.two || buttonId == R.id.three in getKeyButtonAnimationDuration()
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/assets/msmt_e2e_tests/flex_lite/
Dflex_lite_with_coarse_destinations.json29 // Source is not registered - it has two destination types and does not set
55 // Source is registered - it has two destination types but sets
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/assets/msmt_e2e_tests/flex_event/
Dflex_event_with_coarse_destinations.json40 // Source is not registered - it has two destination types and does not set
74 // Source is registered - it has two destination types but sets
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/
DPacketReaderTest.java182 final byte[] two = "two 2".getBytes("UTF-8"); in testBasicWorking()
183 sendPacket(two); in testBasicWorking()
186 assertTrue(Arrays.equals(two, mLastRecvBuf)); in testBasicWorking()
192 assertTrue(Arrays.equals(two, mLastRecvBuf)); in testBasicWorking()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarServiceUtilsTest.java419 CarServiceUtils.EncryptedData two = new CarServiceUtils.EncryptedData(dataTwo, ivTwo); in testEncryptedDataEquals() local
421 expectWithMessage("The same encrypted data").that(one).isEqualTo(two); in testEncryptedDataEquals()
432 CarServiceUtils.EncryptedData two = new CarServiceUtils.EncryptedData(dataTwo, ivTwo); in testEncryptedDataEquals_notEqualData() local
434 expectWithMessage("The same encrypted data").that(one).isNotEqualTo(two); in testEncryptedDataEquals_notEqualData()
445 CarServiceUtils.EncryptedData two = new CarServiceUtils.EncryptedData(dataTwo, ivTwo); in testEncryptedDataEquals_notEqualIv() local
447 expectWithMessage("The same encrypted data").that(one).isNotEqualTo(two); in testEncryptedDataEquals_notEqualIv()
/packages/apps/Dialer/java/com/android/dialer/dialpadview/
DDialpadView.java64 R.id.two,
349 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
373 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
392 } else if (buttonId == R.id.two) { in getKeyButtonAnimationDelay()
434 } else if (buttonId == R.id.two in getKeyButtonAnimationDuration()
451 } else if (buttonId == R.id.two in getKeyButtonAnimationDuration()
465 || buttonId == R.id.two in getKeyButtonAnimationDuration()
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/assets/msmt_interop_tests/
Dexpired_source.json108 // Rounded to two days (172800 seconds).
184 // to two days.
/packages/services/Car/tools/cpu_perf/
Dpixel6.config32 # two weakest cores gone, 6 cores
37 # two middle cores gone, 6 cores
D8155.config30 # two weakest cores gone, 6 cores
36 # two middle cores gone, 6 cores
/packages/apps/Launcher3/tests/src/com/android/launcher3/pageindicators/
DPageIndicatorDotsTest.kt40 …fun `setActiveMarker should set the active page to the parameter passed divided by two in two pane… in setActiveMarker should set the active page to the parameter passed divided by two in two panel layouts()

12345