Home
last modified time | relevance | path

Searched refs:last_line (Results 1 – 8 of 8) sorted by relevance

/glogg/glogg/src/
H A Dselection.cpp
H A Dselection.h
H A Dabstractlogview.cpp
/glogg/src/
H A Dselection.cpp81 void Selection::crop( int last_line ) in crop() argument
83 if ( selectedLine_ > last_line ) in crop()
86 if ( selectedPartial_.line > last_line ) in crop()
89 if ( selectedRange_.endLine > last_line ) in crop()
90 selectedRange_.endLine = last_line; in crop()
92 if ( selectedRange_.startLine > last_line ) in crop()
93 selectedRange_.startLine = last_line; in crop()
H A Dselection.h76 void crop( int last_line );
H A Dabstractlogview.cpp736 LineNumber last_line = firstLine + getNbVisibleLines(); in scrollContentsBy() local
740 overview_->updateCurrentPosition( firstLine, last_line ); in scrollContentsBy()
1038 LineNumber last_line = std::min( static_cast<int64_t>( logData->getNbLine() ), in updateData() local
1049 overview_->updateCurrentPosition( firstLine, last_line ); in updateData()
/glogg/src/data/
H A Dlogdata.cpp439 const qint64 last_line = first_line + number - 1; in doGetLines() local
447 if ( last_line >= indexing_data_.getNbLines() ) { in doGetLines()
456 const qint64 end_byte = endOfLinePosition( last_line ); in doGetLines()
465 for ( qint64 line = first_line; (line <= last_line); line++ ) { in doGetLines()
480 const qint64 last_line = first_line + number - 1; in doGetExpandedLines() local
486 if ( last_line >= indexing_data_.getNbLines() ) { in doGetExpandedLines()
496 const qint64 end_byte = endOfLinePosition( last_line ); in doGetExpandedLines()
506 for ( qint64 line = first_line; (line <= last_line); line++ ) { in doGetExpandedLines()
/glogg/glogg/src/data/
H A Dlogdata.cpp