Searched refs:nbMatches (Results 1 – 16 of 16) sorted by relevance
/glogg/glogg/src/data/ |
H A D | logfiltereddataworkerthread.cpp |
|
H A D | logfiltereddataworkerthread.h |
|
H A D | logfiltereddata.cpp |
|
H A D | logfiltereddata.h |
|
/glogg/src/data/ |
H A D | logfiltereddataworkerthread.cpp | 222 int nbMatches = searchData.getNbMatches(); in doSearch() local 235 emit searchProgressed( nbMatches, percentage, initialLine ); in doSearch() 250 nbMatches++; in doSearch() 260 emit searchProgressed( nbMatches, 100, initialLine ); in doSearch()
|
H A D | logfiltereddataworkerthread.h | 101 void searchProgressed( int percent, int nbMatches, qint64 started ); 165 void searchProgressed( int percent, int nbMatches, qint64 initial_position );
|
H A D | logfiltereddata.cpp | 278 void LogFilteredData::handleSearchProgressed( int nbMatches, int progress, qint64 initial_position ) in handleSearchProgressed() argument 281 << nbMatches << " progress=" << progress; in handleSearchProgressed() 287 emit searchProgressed( nbMatches, progress, initial_position ); in handleSearchProgressed()
|
H A D | logfiltereddata.h | 119 void searchProgressed( int nbMatches, int progress, qint64 initial_position );
|
/glogg/glogg/tests/ |
H A D | testlogfiltereddata.h |
|
H A D | testlogfiltereddata.cpp |
|
/glogg/tests/ |
H A D | testlogfiltereddata.h | 26 void searchProgressed( int completion, int nbMatches );
|
H A D | testlogfiltereddata.cpp | 568 void TestLogFilteredData::searchProgressed( int nbMatches, int completion ) in searchProgressed() argument 576 searchLastMatches_ = nbMatches; in searchProgressed()
|
/glogg/glogg/src/ |
H A D | crawlerwidget.cpp |
|
H A D | crawlerwidget.h |
|
/glogg/src/ |
H A D | crawlerwidget.cpp | 299 void CrawlerWidget::updateFilteredView( int nbMatches, int progress, qint64 initial_position ) in updateFilteredView() argument 305 printSearchInfoMessage( nbMatches ); in updateFilteredView() 317 .arg( nbMatches ) in updateFilteredView() 318 .arg( nbMatches > 1 ? "es" : "" ) ); in updateFilteredView() 324 if ( nbMatches != nbMatches_ ) { in updateFilteredView() 325 nbMatches_ = nbMatches; in updateFilteredView() 938 void CrawlerWidget::printSearchInfoMessage( int nbMatches ) in printSearchInfoMessage() argument 947 text = tr("%1 match%2 found.").arg( nbMatches ) in printSearchInfoMessage() 948 .arg( nbMatches > 1 ? "es" : "" ); in printSearchInfoMessage() 951 text = tr("%1 match%2 found. Search is auto-refreshing...").arg( nbMatches ) in printSearchInfoMessage() [all …]
|
H A D | crawlerwidget.h | 148 void updateFilteredView( int nbMatches, int progress, qint64 initial_position ); 230 void printSearchInfoMessage( int nbMatches = 0 );
|