Searched defs:callTypes (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/
H A DPhoneCallDetails.java45 public final int[] callTypes; field in class:PhoneCallDetails
97 int[] callTypes, long date, long duration) {
99 callTypes, date, duration, "", 0, "", null, null, 0, null, null, 0, null, null);
105 int[] callTypes, long date, long duration, String accountLabel, Drawable accountIcon,
108 callTypes, date, duration, "", 0, "", null, null, 0, accountLabel, accountIcon,
115 int[] callTypes, long date, long duration, CharSequence name,
124 this.callTypes = callTypes;
95 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration) argument
103 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration, String accountLabel, Drawable accountIcon, int features, Long dataUsage, String transcription) argument
113 PhoneCallDetails(CharSequence number, int numberPresentation, CharSequence formattedNumber, String countryIso, String geocode, int[] callTypes, long date, long duration, CharSequence name, int numberType, CharSequence numberLabel, Uri contactUri, Uri photoUri, int sourceType, String accountLabel, Drawable accountIcon, int features, Long dataUsage, String transcription) argument
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogListItemHelper.java136 int lastCallType = getLastCallType(details.callTypes);
156 if (details.callTypes.length > 1) {
158 details.callTypes.length));
186 int lastCallType = getLastCallType(details.callTypes);
204 * @param callTypes Call types to check.
207 private int getLastCallType(int[] callTypes) { argument
208 if (callTypes.length > 0) {
209 return callTypes[0];
/packages/apps/Dialer/tests/src/com/android/dialer/
H A DPhoneCallDetailsHelperTest.java340 private void setPhoneCallDetailsWithCallTypeIcons(int... callTypes) { argument
344 callTypes, TEST_DATE, TEST_DURATION)

Completed in 457 milliseconds