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.java112 int groupCallType = cursor.getInt(CallLogQuery.CALL_TYPE); in addGroups() local
154 && areBothNotVoicemail(callType, groupCallType) in addGroups()
155 && (areBothNotBlocked(callType, groupCallType) || areBothBlocked(callType, groupCallType)) in addGroups()
176 groupCallType = callType; in addGroups()
269 private boolean areBothNotVoicemail(int callType, int groupCallType) { in areBothNotVoicemail() argument
270 return callType != Calls.VOICEMAIL_TYPE && groupCallType != Calls.VOICEMAIL_TYPE; in areBothNotVoicemail()
273 private boolean areBothNotBlocked(int callType, int groupCallType) { in areBothNotBlocked() argument
274 return callType != Calls.BLOCKED_TYPE && groupCallType != Calls.BLOCKED_TYPE; in areBothNotBlocked()
277 private boolean areBothBlocked(int callType, int groupCallType) { in areBothBlocked() argument
278 return callType == Calls.BLOCKED_TYPE && groupCallType == Calls.BLOCKED_TYPE; in areBothBlocked()