Home
last modified time | relevance | path

Searched refs:number (Results 1 – 24 of 24) sorted by relevance

/glogg/glogg/src/data/ !
H A Dabstractlogdata.cpp
H A Dabstractlogdata.h
H A Dlogdata.cpp
H A Dlogfiltereddata.h
H A Dlogdata.h
H A Dlogfiltereddata.cpp
/glogg/src/data/ !
H A Dabstractlogdata.cpp45 QStringList AbstractLogData::getLines( qint64 first_line, int number ) const in getLines()
47 return doGetLines( first_line, number ); in getLines()
51 QStringList AbstractLogData::getExpandedLines( qint64 first_line, int number ) const in getExpandedLines()
53 return doGetExpandedLines( first_line, number ); in getExpandedLines()
H A Dabstractlogdata.h44 QStringList getLines( qint64 first_line, int number ) const;
46 QStringList getExpandedLines( qint64 first_line, int number ) const;
68 virtual QStringList doGetLines( qint64 first_line, int number ) const = 0;
70 virtual QStringList doGetExpandedLines( qint64 first_line, int number ) const = 0;
H A Dlogdata.cpp436 QStringList LogData::doGetLines( qint64 first_line, int number ) const in doGetLines()
439 const qint64 last_line = first_line + number - 1; in doGetLines()
443 if ( number == 0 ) { in doGetLines()
477 QStringList LogData::doGetExpandedLines( qint64 first_line, int number ) const in doGetExpandedLines()
480 const qint64 last_line = first_line + number - 1; in doGetExpandedLines()
482 if ( number == 0 ) { in doGetExpandedLines()
H A Dlogfiltereddata.h130 QStringList doGetLines( qint64 first, int number ) const;
131 QStringList doGetExpandedLines( qint64 first, int number ) const;
H A Dlogdata.h156 QStringList doGetLines( qint64 first, int number ) const override;
157 QStringList doGetExpandedLines( qint64 first, int number ) const override;
H A Dlogfiltereddata.cpp368 QStringList LogFilteredData::doGetLines( qint64 first_line, int number ) const in doGetLines()
372 for ( int i = first_line; i < first_line + number; i++ ) { in doGetLines()
380 QStringList LogFilteredData::doGetExpandedLines( qint64 first_line, int number ) const in doGetExpandedLines()
384 for ( int i = first_line; i < first_line + number; i++ ) { in doGetExpandedLines()
/glogg/glogg/ !
H A DTODO
H A DCOPYING
/glogg/ !
H A DTODO2 - Line number in filtered view
16 - Greater number of latest files
20 - Search slows down when there is a large number of matches
H A DCOPYING570 Each version is given a distinguishing version number. If the
575 Foundation. If the Program does not specify a version number of the
/glogg/glogg/src/ !
H A Doptionsdialog.cpp
H A Dcrawlerwidget.cpp
/glogg/src/ !
H A Doptionsdialog.cpp161 int sizeIndex = fontSizeBox->findText( QString::number(fontInfo.pointSize()) ); in updateDialogFromConfig()
175 pollIntervalLineEdit->setText( QString::number( config->pollIntervalMs() ) ); in updateDialogFromConfig()
193 fontSizeBox->addItem( QString::number(size) ); in updateFontSize()
H A Dcrawlerwidget.cpp912 errorMessage += QString::number(offset); in replaceCurrentSearch()
/glogg/glogg/doc/ !
H A Ddocumentation.markdown
/glogg/doc/ !
H A Ddocumentation.markdown51 sort of event. Any number of filter can be defined in the 'Filters'
101 <tr><td>[number] j/k</td>
102 <td>move the selection 'number' (or one) line down/up</td></tr>
105 <tr><td>[number] g</td>
106 <td>jump to the line number given or the first one if no number is entered</td></tr>
/glogg/glogg/tests/ !
H A DwatchtowerTest.cpp
/glogg/tests/ !
H A DwatchtowerTest.cpp126 bool waitNotificationReceived( int number = 1, int timeout_ms = TIMEOUT ) { in waitNotificationReceived() argument
129 [this, number] { return notification_received >= number; } ) ); in waitNotificationReceived()