Home
last modified time | relevance | path

Searched refs:id1 (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DVerifierDeviceIdentityTest.java79 (int) TEST_1, id1.hashCode()); in testVerifierDeviceIdentity_HashCode()
86 TEST_1_ENCODED, id1.toString()); in testVerifierDeviceIdentity_ToString_Success()
93 TEST_MAXVALUE_ENCODED, id1.toString()); in testVerifierDeviceIdentity_ToString_Largest()
100 TEST_ZERO_ENCODED, id1.toString()); in testVerifierDeviceIdentity_ToString_Zero()
107 TEST_NEGONE_ENCODED, id1.toString()); in testVerifierDeviceIdentity_ToString_NegOne()
114 TEST_MINVALUE_ENCODED, id1.toString()); in testVerifierDeviceIdentity_ToString_MinValue()
133 id1.writeToParcel(parcel, 0); in testVerifierDeviceIdentity_Parcel_Read_Pass()
167 + " should be the same", id1, id2); in testVerifierDeviceIdentity_Generate_MinValue()
187 id1, id2); in testVerifierDeviceIdentity_Parse_Normal()
242 id1.toString(), id2.toString()); in testVerifierDeviceIdentity_Parse_SquashToUppercase()
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
H A DContentCaptureEventTest.java111 final AutofillId id1 = new AutofillId(108); in testAddAutofillId() local
112 event.addAutofillId(id1); in testAddAutofillId()
114 assertThat(event.getIds()).containsExactly(id1); in testAddAutofillId()
119 assertThat(event.getIds()).containsExactly(id1, id2).inOrder(); in testAddAutofillId()
126 final AutofillId id1 = new AutofillId(108); in testAddAutofillId_afterSetId() local
127 event.setAutofillId(id1); in testAddAutofillId_afterSetId()
128 assertThat(event.getId()).isEqualTo(id1); in testAddAutofillId_afterSetId()
134 assertThat(event.getIds()).containsExactly(id1, id2).inOrder(); in testAddAutofillId_afterSetId()
141 final AutofillId id1 = new AutofillId(108); in testAddAutofillId_afterSetIds() local
143 ids.add(id1); in testAddAutofillId_afterSetIds()
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/view/autofill/
H A DAutofillIdTest.java334 private void assertEqualsIgnoreSession(AutofillId id1, AutofillId id2) { in assertEqualsIgnoreSession() argument
335 assertWithMessage("id1 is null").that(id1).isNotNull(); in assertEqualsIgnoreSession()
337 assertWithMessage("%s is not equal to %s", id1, id2).that(id1.equalsIgnoreSession(id2)) in assertEqualsIgnoreSession()
341 private void assertNotEqualsIgnoreSession(AutofillId id1, AutofillId id2) { in assertNotEqualsIgnoreSession() argument
342 assertWithMessage("id1 is null").that(id1).isNotNull(); in assertNotEqualsIgnoreSession()
344 assertWithMessage("%s is not equal to %s", id1, id2).that(id1.equalsIgnoreSession(id2)) in assertNotEqualsIgnoreSession()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/textclassifier/
H A DIconsUriHelperTest.java78 final String id1 = uri1.getPathSegments().get(0); in testGetContentUri_samePackageIdForSamePackageName() local
81 assertThat(id1).isEqualTo(id2); in testGetContentUri_samePackageIdForSamePackageName()
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationRecordTest.java101 private final int id1 = 1; field in NotificationRecordTest
187 return new StatusBarNotification(pkg, pkg, id1, tag1, uid, uid, n, mUser, null, uid); in getNotification()
209 return new StatusBarNotification(mPkg, mPkg, id1, tag1, uid, uid, n, mUser, null, uid); in getStyledNotification()
229 return new StatusBarNotification(mPkg, mPkg, id1, tag1, uid, uid, n, mUser, null, uid); in getInsistentNotification()
245 return new StatusBarNotification(pkg, pkg, id1, tag1, uid, uid, n, mUser, null, uid); in getMessagingStyleNotification()
865 new StatusBarNotification(PKG_P, PKG_P, id1, tag1, uid, uid, n, mUser, null, uid); in testCalculateGrantableUris_PappProvided()
886 new StatusBarNotification(PKG_P, PKG_P, id1, tag1, uid, uid, n, mUser, null, uid); in testCalculateGrantableUris_PappProvided_invalidSound()
905 new StatusBarNotification(PKG_P, PKG_P, id1, tag1, uid, uid, n, mUser, null, uid); in testCalculateGrantableUris_PuserOverridden()
922 new StatusBarNotification(PKG_O, PKG_O, id1, tag1, uid, uid, n, mUser, null, uid); in testCalculateGrantableUris_prePappProvided()
/aosp14/frameworks/base/core/java/android/view/
H A DGestureDetector.java590 final int id1 = ev.getPointerId(upIndex); in onTouchEvent() local
591 final float x1 = mVelocityTracker.getXVelocity(id1); in onTouchEvent()
592 final float y1 = mVelocityTracker.getYVelocity(id1); in onTouchEvent()
H A DInsetsState.java879 int id1 = state1.sourceIdAt(index1);
881 while (id1 != id2) {
882 if (id1 < id2) {
886 id1 = state1.sourceIdAt(index1);
/aosp14/frameworks/base/tests/StagedInstallTest/app/src/com/android/tests/stagedinstallinternal/
H A DStagedInstallInternalTest.java210 int id1 = Install.single(TestApp.A1).setStaged().createSession(); in testAbandonStagedSessionShouldCleanUp() local
211 InstallUtils.getPackageInstaller().abandonSession(id1); in testAbandonStagedSessionShouldCleanUp()
/aosp14/frameworks/base/core/java/android/widget/
H A DRemoteViews.java3088 target.setCompoundDrawablesRelativeWithIntrinsicBounds(id1, id2, id3, id4);
3090 target.setCompoundDrawablesWithIntrinsicBounds(id1, id2, id3, id4);
3094 final Drawable id1 = i1 == null ? null : i1.loadDrawable(ctx);
3099 target.setCompoundDrawablesRelativeWithIntrinsicBounds(id1, id2, id3, id4);
3101 target.setCompoundDrawablesWithIntrinsicBounds(id1, id2, id3, id4);
3127 copy.id1 = i1 == null ? null : i1.loadDrawable(ctx);
3132 copy.id1 = d1 == 0 ? null : ctx.getDrawable(d1);
3166 Drawable id1, id2, id3, id4;
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
H A DJobSchedulerService.java5240 int id1 = o1.getJobId();
5245 return id1 < id2 ? -1 : (id1 > id2 ? 1 : 0);
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt69082 Landroid/widget/RemoteViews$TextViewDrawableAction;->id1:Landroid/graphics/drawable/Drawable;