Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DNotification.java2792 Notification.Action[] firstAs = first.actions; in areActionsVisiblyDifferent() local
2794 if (firstAs == null && secondAs != null || firstAs != null && secondAs == null) { in areActionsVisiblyDifferent()
2797 if (firstAs != null && secondAs != null) { in areActionsVisiblyDifferent()
2798 if (firstAs.length != secondAs.length) { in areActionsVisiblyDifferent()
2801 for (int i = 0; i < firstAs.length; i++) { in areActionsVisiblyDifferent()
2802 if (!Objects.equals(String.valueOf(firstAs[i].title), in areActionsVisiblyDifferent()
2806 RemoteInput[] firstRs = firstAs[i].getRemoteInputs(); in areActionsVisiblyDifferent()