Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogGroupBuilder.java113 int groupCallType = cursor.getInt(CallLogQuery.CALL_TYPE); in addGroups() local
155 && areBothNotVoicemail(callType, groupCallType) in addGroups()
156 && (areBothNotBlocked(callType, groupCallType) || areBothBlocked(callType, groupCallType)) in addGroups()
177 groupCallType = callType; in addGroups()
270 private boolean areBothNotVoicemail(int callType, int groupCallType) { in areBothNotVoicemail() argument
271 return callType != Calls.VOICEMAIL_TYPE && groupCallType != Calls.VOICEMAIL_TYPE; in areBothNotVoicemail()
274 private boolean areBothNotBlocked(int callType, int groupCallType) { in areBothNotBlocked() argument
275 return callType != Calls.BLOCKED_TYPE && groupCallType != Calls.BLOCKED_TYPE; in areBothNotBlocked()
278 private boolean areBothBlocked(int callType, int groupCallType) { in areBothBlocked() argument
279 return callType == Calls.BLOCKED_TYPE && groupCallType == Calls.BLOCKED_TYPE; in areBothBlocked()