Searched refs:_LineAt (Results 1 - 8 of 8) sorted by last modified time

/haiku/src/kits/interface/
H A DTextView.cpp534 int32 startLine = _LineAt(BPoint(0.0, updateRect.top));
535 int32 endLine = _LineAt(BPoint(0.0, updateRect.bottom));
1199 fLines->BumpOffset(length, _LineAt(offset) + 1);
1639 _RequestDrawLines(_LineAt(startOffset), _LineAt(endOffset));
1747 int32 lineNum = _LineAt(offset);
1757 int32 lineNum = _LineAt(point);
1775 int32 lineNum = _LineAt(offset);
1837 int32 lineNum = _LineAt(point);
2727 int32 fromLine = _LineAt(
5846 BTextView::_LineAt(int32 offset) const function in class:BTextView
5862 BTextView::_LineAt(const BPoint& point) const function in class:BTextView
[all...]
/haiku/headers/os/interface/
H A DTextView.h408 int32 _LineAt(int32 offset) const;
409 int32 _LineAt(const BPoint& point) const;
/haiku/src/apps/terminal/
H A DTermView.cpp490 TermView::_LineAt(float y) function in class:TermView
513 return TermPos(p.x >= 0 ? (int32)p.x / fFontWidth : -1, _LineAt(p.y));
621 int32 offset = _LineAt(0);
1169 int32 firstVisible = _LineAt(0);
1367 int32 firstVisible = _LineAt(0);
1368 int32 y1 = _LineAt(updateRect.top);
1369 int32 y2 = std::min(_LineAt(updateRect.bottom), (int32)fRows - 1);
2039 int32 oldFirstLine = _LineAt(0);
2040 int32 oldLastLine = _LineAt(bottom);
2041 int32 newFirstLine = _LineAt(dif
[all...]
H A DTermView.h189 inline int32 _LineAt(float y);
H A DHistoryBuffer.cpp268 HistoryLine* line = _LineAt(fSize - toDrop - 1);
280 HistoryLine* line = _LineAt(fSize - toDrop - 1);
H A DBasicTerminalBuffer.h186 inline TerminalLine* _LineAt(int32 index) const;
H A DBasicTerminalBuffer.cpp62 BasicTerminalBuffer::_LineAt(int32 index) const function in class:BasicTerminalBuffer
77 return _LineAt(index + fHeight);
263 TerminalLine* destLine = _LineAt(i);
645 TerminalLine* line = _LineAt(fCursor.y);
679 TerminalLine *line = _LineAt(y);
694 TerminalLine* line = _LineAt(fCursor.y);
753 TerminalLine* line = _LineAt(fCursor.y);
818 TerminalLine* line = _LineAt(fCursor.y);
833 TerminalLine* line = _LineAt(fCursor.y);
868 TerminalLine* line = _LineAt(fCurso
[all...]
H A DHistoryBuffer.h41 inline HistoryLine* _LineAt(int32 index) const;
56 HistoryBuffer::_LineAt(int32 index) const function in class:HistoryBuffer
65 return index >= 0 && index < fSize ? _LineAt(index) : NULL;

Completed in 194 milliseconds