Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/
DEvent.java455 long colMask = 0; in doComputePositions() local
463 colMask = removeNonAlldayActiveEvents( in doComputePositions()
464 event, activeList.iterator(), minimumDurationMillis, colMask); in doComputePositions()
466 colMask = removeAlldayActiveEvents(event, activeList.iterator(), colMask); in doComputePositions()
476 colMask = 0; in doComputePositions()
482 int col = findFirstZeroBit(colMask); in doComputePositions()
485 colMask |= (1L << col); in doComputePositions()
498 private static long removeAlldayActiveEvents(Event event, Iterator<Event> iter, long colMask) { in removeAlldayActiveEvents() argument
505 colMask &= ~(1L << active.getColumn()); in removeAlldayActiveEvents()
509 return colMask; in removeAlldayActiveEvents()
[all …]