/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | ColorizedFgsCoordinatorTest.java | 139 private Notification.CallStyle makeCallStyle() { in makeCallStyle() 143 return Notification.CallStyle.forIncomingCall(person, pendingIntent, pendingIntent); in makeCallStyle()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | ColorizedFgsCoordinator.java | 78 && notification.isStyle(Notification.CallStyle.class);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationMemoryMeter.kt | 6 import android.app.Notification.CallStyle 181 CallStyle::class.java.name -> NotificationEnums.STYLE_CALL
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallController.kt | 22 import android.app.Notification.CallStyle.CALL_TYPE_ONGOING 397 return entry.sbn.notification.isStyle(Notification.CallStyle::class.java)
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | NotificationTest.java | 517 Notification.CallStyle style = Notification.CallStyle.forIncomingCall( in testCallStyle_getSystemActions_forIncomingCall() 534 Notification.CallStyle style = Notification.CallStyle.forOngoingCall( in testCallStyle_getSystemActions_forOngoingCall() 550 Notification.CallStyle style = Notification.CallStyle.forIncomingCall( in testCallStyle_getSystemActions_forIncomingCallWithOtherActions() 574 Notification.CallStyle style = Notification.CallStyle.forOngoingCall( in testCallStyle_getSystemActions_forOngoingCallWithOtherActions() 596 Notification.CallStyle style = Notification.CallStyle.forOngoingCall( in testCallStyle_getSystemActions_dropsOldSystemActions() 891 Notification.Style style = Notification.CallStyle.forIncomingCall( in testRestoreFromExtras_Call_invalidExtra_noCrash()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallControllerTest.kt | 608 callStyle: Notification.CallStyle, 638 private val ongoingCallStyle = Notification.CallStyle.forOngoingCall(person, hangUpIntent) 639 private val screeningCallStyle = Notification.CallStyle.forScreeningCall(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | HeadsUpManager.java | 437 boolean isIncomingCall = n.isStyle(Notification.CallStyle.class) && n.extras.getInt( in isCriticalCallNotif() 438 Notification.EXTRA_CALL_TYPE) == Notification.CallStyle.CALL_TYPE_INCOMING; in isCriticalCallNotif()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationComparator.java | 206 return record.getNotification().isStyle(Notification.CallStyle.class); in isCallStyle()
|
H A D | NotificationManagerService.java | 7044 if (notification.isStyle(Notification.CallStyle.class)) { 7047 Notification.CallStyle style = (Notification.CallStyle) builder.getStyle(); 7093 || notification.isStyle(Notification.CallStyle.class) 7369 if (n.isStyle(Notification.CallStyle.class)) { 7414 if (n.isStyle(Notification.CallStyle.class)) { 7944 && notification.isStyle(Notification.CallStyle.class);
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | Notification.java | 738 MessagingStyle.class, CallStyle.class); 9433 public static class CallStyle extends Style { class in Notification.Builder 9490 CallStyle() { in CallStyle() method in Notification.Builder.CallStyle 9505 public static CallStyle forIncomingCall(@NonNull Person person, in forIncomingCall() 9507 return new CallStyle(CALL_TYPE_INCOMING, person, in forIncomingCall() 9525 public static CallStyle forOngoingCall(@NonNull Person person, in forOngoingCall() 9527 return new CallStyle(CALL_TYPE_ONGOING, person, in forOngoingCall() 9547 public static CallStyle forScreeningCall(@NonNull Person person, in forScreeningCall() 9549 return new CallStyle(CALL_TYPE_SCREENING, person, in forScreeningCall() 9582 public CallStyle setIsVideo(boolean isVideo) { in setIsVideo() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationMemoryMeterTest.kt | 180 .setStyle(Notification.CallStyle.forIncomingCall(person, fakeIntent, fakeIntent))
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | HeadsUpManagerTest.java | 505 .setStyle(Notification.CallStyle in testAlertEntryCompareTo_incomingCallLessThanActiveRemoteInput()
|
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationComparatorTest.java | 169 .setStyle(Notification.CallStyle.forOngoingCall( in setUp()
|
H A D | NotificationManagerServiceTest.java | 6096 .setStyle(Notification.CallStyle.forOngoingCall(callingPerson, hangUpIntent) in testVisitUris_callStyle() 6127 Notification.CallStyle callStyle = Notification.CallStyle.forOngoingCall( in testVisitUris_styleExtrasWithoutStyle() 10855 nb.setStyle(Notification.CallStyle.forOngoingCall( 10925 nb.setStyle(Notification.CallStyle.forOngoingCall(person, mock(PendingIntent.class))); 11448 .setStyle(Notification.CallStyle.forOngoingCall( 11469 .setStyle(Notification.CallStyle.forOngoingCall( 11486 .setStyle(Notification.CallStyle.forOngoingCall( 11503 .setStyle(Notification.CallStyle.forOngoingCall( 11519 .setStyle(Notification.CallStyle.forOngoingCall( 11535 .setStyle(Notification.CallStyle.forOngoingCall( [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationInfo.java | 234 mIsSystemRegisteredCall = mSbn.getNotification().isStyle(Notification.CallStyle.class) in bindNotification()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationInfoTest.java | 671 .setStyle(Notification.CallStyle.forOngoingCall( in testBindNotification_whenCurrentlyInCall()
|
/aosp14/frameworks/base/core/api/ |
H A D | current.txt | 6544 public static class Notification.CallStyle extends android.app.Notification.Style { 6545 …method @NonNull public static android.app.Notification.CallStyle forIncomingCall(@NonNull android.… 6546 …method @NonNull public static android.app.Notification.CallStyle forOngoingCall(@NonNull android.a… 6547 …method @NonNull public static android.app.Notification.CallStyle forScreeningCall(@NonNull android… 6548 … method @NonNull public android.app.Notification.CallStyle setAnswerButtonColorHint(@ColorInt int); 6549 …method @NonNull public android.app.Notification.CallStyle setDeclineButtonColorHint(@ColorInt int); 6550 method @NonNull public android.app.Notification.CallStyle setIsVideo(boolean); 6551 …method @NonNull public android.app.Notification.CallStyle setVerificationIcon(@Nullable android.gr… 6552 …method @NonNull public android.app.Notification.CallStyle setVerificationText(@Nullable CharSequen…
|
/aosp14/frameworks/base/boot/ |
H A D | preloaded-classes | 593 android.app.Notification$CallStyle
|
H A D | boot-image-profile.txt | 23373 Landroid/app/Notification$CallStyle;
|
/aosp14/frameworks/base/config/ |
H A D | preloaded-classes | 593 android.app.Notification$CallStyle
|
H A D | boot-image-profile.txt | 33476 Landroid/app/Notification$CallStyle;
|
/aosp14/frameworks/base/services/ |
H A D | art-profile | 5184 …/ApplicationPackageManager;]Landroid/app/Notification$CallStyle;Landroid/app/Notification$CallStyl…
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |