Home
last modified time | relevance | path

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

/packages/apps/Dialer/src/com/android/dialer/
DPhoneCallDetails.java46 public final int[] callTypes; field in PhoneCallDetails
95 int[] callTypes, long date, long duration) { in PhoneCallDetails() argument
97 callTypes, date, duration, "", 0, "", null, null, 0, null, 0, null, null); in PhoneCallDetails()
103 int[] callTypes, long date, long duration, in PhoneCallDetails() argument
105 this(number, numberPresentation, formattedNumber, countryIso, geocode, callTypes, date, in PhoneCallDetails()
113 int[] callTypes, long date, long duration, CharSequence name, in PhoneCallDetails() argument
122 this.callTypes = callTypes; in PhoneCallDetails()
DPhoneCallDetailsHelper.java83 int count = details.callTypes.length; in setPhoneCallDetails()
86 views.callTypeIcons.add(details.callTypes[index]); in setPhoneCallDetails()
88 isVoicemail = details.callTypes[index] == Calls.VOICEMAIL_TYPE; in setPhoneCallDetails()
/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogListItemHelper.java157 int lastCallType = getLastCallType(details.callTypes); in getCallDescription()
177 if (details.callTypes.length > 1) { in getCallDescription()
179 details.callTypes.length)); in getCallDescription()
216 int lastCallType = getLastCallType(details.callTypes); in getCallDescriptionStringID()
239 private int getLastCallType(int[] callTypes) { in getLastCallType() argument
240 if (callTypes.length > 0) { in getLastCallType()
241 return callTypes[0]; in getLastCallType()
DCallLogAdapter.java764 final int[] callTypes = getCallTypes(c, count); in bindView() local
789 geocode, callTypes, date, duration, accountHandle, features, dataUsage, in bindView()
793 geocode, callTypes, date, duration, name, ntype, label, lookupUri, photoUri, in bindView()
1229 int[] callTypes = new int[count]; in getCallTypes() local
1231 callTypes[index] = cursor.getInt(CallLogQuery.CALL_TYPE); in getCallTypes()
1235 return callTypes; in getCallTypes()
DCallDetailHistoryAdapter.java125 int callType = details.callTypes[0]; in getView()
/packages/apps/Dialer/tests/src/com/android/dialer/
DPhoneCallDetailsHelperTest.java338 private void setPhoneCallDetailsWithCallTypeIcons(int... callTypes) { in setPhoneCallDetailsWithCallTypeIcons() argument
342 callTypes, TEST_DATE, TEST_DURATION) in setPhoneCallDetailsWithCallTypeIcons()