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

/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogGroupBuilder.java99 int groupCallType = cursor.getInt(CallLogQuery.CALL_TYPE);
136 && areBothNotVoicemail(callType, groupCallType)
137 && (areBothNotBlocked(callType, groupCallType)
138 || areBothBlocked(callType, groupCallType))) {
158 groupCallType = callType;
235 private boolean areBothNotVoicemail(int callType, int groupCallType) { argument
237 && groupCallType != AppCompatConstants.CALLS_VOICEMAIL_TYPE;
240 private boolean areBothNotBlocked(int callType, int groupCallType) { argument
242 && groupCallType != AppCompatConstants.CALLS_BLOCKED_TYPE;
245 private boolean areBothBlocked(int callType, int groupCallType) { argument
[all...]

Completed in 11 milliseconds