Lines Matching refs:Notification
35 import android.app.Notification;
340 Notification.Builder publicBuilder = new Notification.Builder(context); in buildAndSendNotification()
350 final Notification.Builder builder = getNotificationBuilder(); in buildAndSendNotification()
365 builder.setCategory(Notification.CATEGORY_CALL); in buildAndSendNotification()
367 builder.setPriority(Notification.PRIORITY_MAX); in buildAndSendNotification()
412 Notification notification = builder.build(); in buildAndSendNotification()
415 notification.flags |= Notification.FLAG_INSISTENT; in buildAndSendNotification()
444 DialerCall call, int state, CallAudioState callAudioState, Notification.Builder builder) { in createIncomingCallNotification()
469 private void setNotificationWhen(DialerCall call, int state, Notification.Builder builder) { in setNotificationWhen()
582 Notification.Builder builder, ContactCacheEntry contactInfo, DialerCall call) { in addPersonReference()
887 private void addAnswerAction(Notification.Builder builder) { in addAnswerAction()
894 new Notification.Action.Builder( in addAnswerAction()
902 private void addSpeakeasyAnswerAction(Notification.Builder builder, DialerCall call) { in addSpeakeasyAnswerAction()
937 new Notification.Action.Builder( in addSpeakeasyAnswerAction()
944 private void addDismissAction(Notification.Builder builder) { in addDismissAction()
951 new Notification.Action.Builder( in addDismissAction()
959 private void addHangupAction(Notification.Builder builder) { in addHangupAction()
966 new Notification.Action.Builder( in addHangupAction()
973 private void addSpeakerAction(Notification.Builder builder, CallAudioState callAudioState) { in addSpeakerAction()
986 private void addSpeakerOnAction(Notification.Builder builder) { in addSpeakerOnAction()
993 new Notification.Action.Builder( in addSpeakerOnAction()
1000 private void addSpeakerOffAction(Notification.Builder builder) { in addSpeakerOffAction()
1007 new Notification.Action.Builder( in addSpeakerOffAction()
1014 private void addVideoCallAction(Notification.Builder builder) { in addVideoCallAction()
1021 new Notification.Action.Builder( in addVideoCallAction()
1030 private void addAcceptUpgradeRequestAction(Notification.Builder builder) { in addAcceptUpgradeRequestAction()
1037 new Notification.Action.Builder( in addAcceptUpgradeRequestAction()
1045 private void addDismissUpgradeRequestAction(Notification.Builder builder) { in addDismissUpgradeRequestAction()
1052 new Notification.Action.Builder( in addDismissUpgradeRequestAction()
1061 private void configureFullScreenIntent(Notification.Builder builder, PendingIntent intent) { in configureFullScreenIntent()
1071 private Notification.Builder getNotificationBuilder() { in getNotificationBuilder()
1072 final Notification.Builder builder = new Notification.Builder(context); in getNotificationBuilder()
1077 builder.setPriority(Notification.PRIORITY_HIGH); in getNotificationBuilder()