Lines Matching refs:mLines
272 private var mLines: FloatArray = emptyArray<Float>().toFloatArray() variable
543 mLines = FloatArray(maxGridLines * 4) in init()
1900 mLines[linesIndex++] = GRID_LINE_LEFT_MARGIN in drawGridBackground()
1901 mLines[linesIndex++] = y in drawGridBackground()
1902 mLines[linesIndex++] = stopX in drawGridBackground()
1903 mLines[linesIndex++] = y in drawGridBackground()
1907 canvas.drawLines(mLines, 0, linesIndex, p) in drawGridBackground()
1915 mLines[linesIndex++] = x in drawGridBackground()
1916 mLines[linesIndex++] = startY in drawGridBackground()
1917 mLines[linesIndex++] = x in drawGridBackground()
1918 mLines[linesIndex++] = stopY in drawGridBackground()
1920 canvas.drawLines(mLines, 0, linesIndex, p) in drawGridBackground()
2120 mLines[linesIndex++] = GRID_LINE_LEFT_MARGIN in drawAllDayEvents()
2121 mLines[linesIndex++] = startY in drawAllDayEvents()
2122 mLines[linesIndex++] = computeDayLeftPosition(mNumDays).toFloat() in drawAllDayEvents()
2123 mLines[linesIndex++] = startY in drawAllDayEvents()
2126 mLines[linesIndex++] = x in drawAllDayEvents()
2127 mLines[linesIndex++] = startY in drawAllDayEvents()
2128 mLines[linesIndex++] = x in drawAllDayEvents()
2129 mLines[linesIndex++] = stopY in drawAllDayEvents()
2132 canvas.drawLines(mLines, 0, linesIndex, p) in drawAllDayEvents()