Searched refs:progress (Results 1 – 18 of 18) sorted by relevance
/glogg/glogg/src/ |
H A D | quickfind.cpp |
|
H A D | crawlerwidget.h |
|
H A D | crawlerwidget.cpp |
|
H A D | mainwindow.cpp |
|
H A D | mainwindow.h |
|
/glogg/src/ |
H A D | quickfind.cpp | 43 qint64 progress; in sendNotification() local 45 progress = ( nb_lines + current_line ) * 100 / nb_lines; in sendNotification() 47 progress = current_line * 100 / nb_lines; in sendNotification() 48 emit notify( QFNotificationProgress( progress ) ); in sendNotification()
|
H A D | crawlerwidget.h | 116 void loadingProgressed( int progress ); 148 void updateFilteredView( int nbMatches, int progress, qint64 initial_position );
|
H A D | mainwindow.cpp | 600 void MainWindow::updateLoadingProgress( int progress ) in updateLoadingProgress() argument 602 LOG(logDEBUG) << "Loading progress: " << progress; in updateLoadingProgress() 609 if ( progress > 0 && progress < 100 ) { in updateLoadingProgress() 611 tr( " - Indexing lines... (%1 %)" ).arg( progress ) ); in updateLoadingProgress() 612 infoLine->displayGauge( progress ); in updateLoadingProgress()
|
H A D | crawlerwidget.cpp | 299 void CrawlerWidget::updateFilteredView( int nbMatches, int progress, qint64 initial_position ) in updateFilteredView() argument 303 if ( progress == 100 ) { in updateFilteredView() 313 if ( progress > 0 ) { in updateFilteredView() 316 .arg( progress ) in updateFilteredView() 319 searchInfoLine->displayGauge( progress ); in updateFilteredView() 343 if ( ( progress == 100 ) && ( initial_position == 0 ) && ( !isFollowEnabled() ) ) { in updateFilteredView()
|
H A D | mainwindow.h | 102 void updateLoadingProgress( int progress );
|
/glogg/glogg/tests/ |
H A D | testlogfiltereddata.cpp |
|
/glogg/tests/ |
H A D | testlogfiltereddata.cpp | 101 std::pair<int,int> progress = waitSearchProgressed(); in simpleSearchTest() 129 std::pair<int,int> progress; in simpleSearchTest() local 131 progress = waitSearchProgressed(); in simpleSearchTest() 133 } while ( progress.second < 100 ); in simpleSearchTest() 517 std::pair<int,int> progress; in lineLengthTest() local 519 progress = waitSearchProgressed(); in lineLengthTest() 522 } while ( progress.second < 100 ); in lineLengthTest()
|
/glogg/glogg/src/data/ |
H A D | logfiltereddata.h |
|
H A D | logfiltereddata.cpp |
|
H A D | logdataworkerthread.cpp |
|
/glogg/src/data/ |
H A D | logfiltereddata.h | 119 void searchProgressed( int nbMatches, int progress, qint64 initial_position ); 122 void handleSearchProgressed( int NbMatches, int progress, 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 | logdataworkerthread.cpp | 270 int progress = ( file.size() > 0 ) ? pos*100 / file.size() : 100; in doIndex() local 271 emit indexingProgressed( progress ); in doIndex()
|