Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/calllog/ui/menu/
DDeleteCallLogItemModule.java43 private final CoalescedIds coalescedIds; field in DeleteCallLogItemModule
45 DeleteCallLogItemModule(Context context, CoalescedIds coalescedIds) { in DeleteCallLogItemModule() argument
47 this.coalescedIds = coalescedIds; in DeleteCallLogItemModule()
66 .executeSerial(coalescedIds); in onClick()
88 public Void doInBackground(CoalescedIds coalescedIds) throws Throwable { in doInBackground() argument
97 .and(Selection.column(CallLog.Calls._ID).in(getCallLogIdsAsStrings(coalescedIds))) in doInBackground()
104 if (numRowsDeleted != coalescedIds.getCoalescedIdCount()) { in doInBackground()
109 coalescedIds.getCoalescedIdCount()); in doInBackground()
115 private static List<String> getCallLogIdsAsStrings(CoalescedIds coalescedIds) { in getCallLogIdsAsStrings() argument
116 Assert.checkArgument(coalescedIds.getCoalescedIdCount() > 0); in getCallLogIdsAsStrings()
[all …]
/packages/apps/Dialer/java/com/android/dialer/calldetails/
DCallDetailsCursorLoader.java59 CallDetailsCursorLoader(Context context, CoalescedIds coalescedIds) { in CallDetailsCursorLoader() argument
64 annotatedCallLogIdsSelection(coalescedIds), in CallDetailsCursorLoader()
65 annotatedCallLogIdsSelectionArgs(coalescedIds), in CallDetailsCursorLoader()
88 private static String annotatedCallLogIdsSelection(CoalescedIds coalescedIds) { in annotatedCallLogIdsSelection() argument
91 for (int i = 0; i < coalescedIds.getCoalescedIdCount(); i++) { in annotatedCallLogIdsSelection()
105 private static String[] annotatedCallLogIdsSelectionArgs(CoalescedIds coalescedIds) { in annotatedCallLogIdsSelectionArgs() argument
106 String[] args = new String[coalescedIds.getCoalescedIdCount()]; in annotatedCallLogIdsSelectionArgs()
108 for (int i = 0; i < coalescedIds.getCoalescedIdCount(); i++) { in annotatedCallLogIdsSelectionArgs()
109 args[i] = String.valueOf(coalescedIds.getCoalescedId(i)); in annotatedCallLogIdsSelectionArgs()