Lines Matching refs:colMask
378 var colMask: Long = 0 in doComputePositions() variable
383 colMask = if (!doAlldayEvents) { in doComputePositions()
386 minimumDurationMillis, colMask in doComputePositions()
390 as Iterator<Event>, colMask) in doComputePositions()
400 colMask = 0 in doComputePositions()
406 var col = findFirstZeroBit(colMask) in doComputePositions()
408 colMask = colMask or (1L shl col) in doComputePositions()
423 colMask: Long in removeAlldayActiveEvents()
428 var colMask = colMask in removeAlldayActiveEvents() variable
432 colMask = colMask and (1L shl active.column).inv() in removeAlldayActiveEvents()
436 return colMask in removeAlldayActiveEvents()
443 colMask: Long in removeNonAlldayActiveEvents()
445 var colMask = colMask in removeNonAlldayActiveEvents() variable
456 colMask = colMask and (1L shl active.column).inv() in removeNonAlldayActiveEvents()
460 return colMask in removeNonAlldayActiveEvents()