OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:callTypes
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
PhoneCallDetails.java
54
public int[]
callTypes
;
196
for (int i = 0; i <
callTypes
.length; i++) {
197
if (
callTypes
[i] == CallLog.Calls.INCOMING_TYPE
198
||
callTypes
[i] == CallLog.Calls.MISSED_TYPE
199
||
callTypes
[i] == CallLog.Calls.VOICEMAIL_TYPE
200
||
callTypes
[i] == CallLog.Calls.REJECTED_TYPE
201
||
callTypes
[i] == CallLog.Calls.BLOCKED_TYPE) {
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogListItemHelper.java
189
if (details.
callTypes
.length > 1) {
191
mResources.getString(R.string.description_num_calls, details.
callTypes
.length));
203
int stringID = getCallDescriptionStringID(details.
callTypes
, details.isRead);
218
* @param
callTypes
The type of call corresponding to this entry or multiple if this entry
223
public int getCallDescriptionStringID(int[]
callTypes
, boolean isRead) {
224
int lastCallType = getLastCallType(
callTypes
);
250
* @param
callTypes
Call types to check.
253
private int getLastCallType(int[]
callTypes
) {
254
if (
callTypes
.length > 0) {
255
return
callTypes
[0]
[
all
...]
PhoneCallDetailsHelper.java
78
int count = details.
callTypes
.length;
81
views.callTypeIcons.add(details.
callTypes
[index]);
83
isVoicemail = details.
callTypes
[index] == Calls.VOICEMAIL_TYPE;
173
if (details.
callTypes
[0] != Calls.VOICEMAIL_TYPE) {
258
if (details.
callTypes
[0] == Calls.VOICEMAIL_TYPE) {
358
if (details.
callTypes
[0] == Calls.VOICEMAIL_TYPE && details.duration > 0) {
CallLogAdapter.java
[
all
...]
/packages/apps/Car/Dialer/src/com/android/car/dialer/
StrequentsAdapter.java
247
int[]
callTypes
= mLastCallData.getCallTypes();
248
int icons = Math.min(
callTypes
.length, CallTypeIconsView.MAX_CALL_TYPE_ICONS);
250
viewHolder.callTypeIconsView.add(
callTypes
[i]);
313
int[]
callTypes
= mUiCallManager.getCallTypes(cursor, 1);
315
return new LastCallData(number, nameSb.toString(), secondaryText.toString(),
callTypes
);
402
int[]
callTypes
) {
406
mCallTypes =
callTypes
;
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallManager.java
579
int[]
callTypes
= new int[count];
586
callTypes
[index] = PhoneLoader.VOICEMAIL_TYPE;
589
callTypes
[index] = cursor.getInt(column);
594
return
callTypes
;
Completed in 115 milliseconds