Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/calllogutils/
DPhotoInfoBuilder.java32 public static PhotoInfo.Builder fromCoalescedRow(Context context, CoalescedRow coalescedRow) { in fromCoalescedRow() argument
33 return fromNumberAttributes(coalescedRow.getNumberAttributes()) in fromCoalescedRow()
34 .setName(CallLogEntryText.buildPrimaryText(context, coalescedRow).toString()) in fromCoalescedRow()
35 .setFormattedNumber(coalescedRow.getFormattedNumber()) in fromCoalescedRow()
36 .setIsVoicemail(coalescedRow.getIsVoicemailCall()) in fromCoalescedRow()
39 coalescedRow.getNumberAttributes().getIsSpam(), coalescedRow.getCallType())) in fromCoalescedRow()
40 .setIsVideo((coalescedRow.getFeatures() & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO) in fromCoalescedRow()
43 && (coalescedRow.getFeatures() & Calls.FEATURES_RTT) == Calls.FEATURES_RTT); in fromCoalescedRow()
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/
DNewCallLogViewHolder.java102 void bind(CoalescedRow coalescedRow) { in bind() argument
104 currentRowId = coalescedRow.getId(); in bind()
109 displayRow(coalescedRow); in bind()
110 configA11yForRow(coalescedRow); in bind()
115 realtimeRowProcessor.applyRealtimeProcessing(coalescedRow), in bind()
116 new RealtimeRowFutureCallback(coalescedRow), in bind()
DNewCallLogAdapter.java139 for (CoalescedRow coalescedRow : coalescedRows) { in setCardAndHeaderPositions()
140 long timestamp = coalescedRow.getTimestamp(); in setCardAndHeaderPositions()