Home | History | Annotate | Download | only in calendar

Lines Matching refs:colMask

455         long colMask = 0;
463 colMask = removeNonAlldayActiveEvents(
464 event, activeList.iterator(), minimumDurationMillis, colMask);
466 colMask = removeAlldayActiveEvents(event, activeList.iterator(), colMask);
476 colMask = 0;
481 // zero bits in the column mask "colMask".
482 int col = findFirstZeroBit(colMask);
485 colMask |= (1L << col);
498 private static long removeAlldayActiveEvents(Event event, Iterator<Event> iter, long colMask) {
505 colMask &= ~(1L << active.getColumn());
509 return colMask;
513 Event event, Iterator<Event> iter, long minDurationMillis, long colMask) {
524 colMask &= ~(1L << active.getColumn());
528 return colMask;