Searched refs:endLine (Results 1 - 4 of 4) sorted by relevance

/haiku/src/kits/interface/
H A DTextView.cpp535 int32 endLine = _LineAt(BPoint(0.0, updateRect.bottom)); local
537 _DrawLines(startLine, endLine, -1, true);
2050 BTextView::TextHeight(int32 startLine, int32 endLine) const
2058 if (endLine < 0)
2059 endLine = 0;
2060 else if (endLine > numLines - 1)
2061 endLine = numLines - 1;
2063 float height = (*fLines)[endLine + 1]->origin
2066 if (startLine != endLine && endLine
3852 _RecalculateLineBreaks(int32* startLine, int32* endLine) argument
4546 _DrawLines(int32 startLine, int32 endLine, int32 startOffset, bool erase) argument
4648 _RequestDrawLines(int32 startLine, int32 endLine) argument
[all...]
/haiku/headers/os/interface/
H A DTextView.h168 int32 endLine) const;
304 int32* endLine);
330 void _DrawLines(int32 startLine, int32 endLine,
334 int32 endLine);
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.cpp1201 int32 endLine = min_c(fHeight, height);
1205 if (endLine <= fCursor.y) {
1206 endLine = fCursor.y + 1;
1207 firstLine = endLine - height;
1222 for (int32 i = firstLine; i < endLine; i++) {
1232 for (int32 i = endLine - firstLine; i < height; i++)
/haiku/src/apps/diskprobe/
H A DDataView.cpp798 int32 endLine = end / kBlockSize; local
800 if (endLine > startLine) {
802 end = (endLine + 1) * kBlockSize - 1;

Completed in 388 milliseconds