Lines Matching refs:tableHeight
47 tableHeight int member
86 for i := 0; i < s.tableHeight; i++ {
197 fmt.Fprintf(s.writer, ansi.setCursor(height-s.tableHeight, 1))
302 oldScrollingHeight := s.termHeight - s.tableHeight
307 tableHeight := s.requestedTableHeight
308 if tableHeight == 0 {
309 tableHeight = s.termHeight / 4
310 if tableHeight < 1 {
311 tableHeight = 1
312 } else if tableHeight > 10 {
313 tableHeight = 10
316 if tableHeight > s.termHeight-1 {
317 tableHeight = s.termHeight - 1
319 s.tableHeight = tableHeight
321 scrollingHeight := s.termHeight - s.tableHeight
328 if pan > s.tableHeight {
329 pan = s.tableHeight
339 scrollingHeight := s.termHeight - s.tableHeight
346 for tableLine := 0; tableLine < s.tableHeight; tableLine++ {
347 if tableLine >= s.tableHeight {