Searched refs:count (Results 1 – 25 of 36) sorted by relevance
12
/glogg/glogg/src/ |
H A D | tabbedcrawlerwidget.cpp |
|
H A D | main.cpp |
|
H A D | filtersdialog.cpp |
|
H A D | viewtools.cpp |
|
H A D | perfcounter.h |
|
H A D | persistentinfo.cpp |
|
H A D | savedsearches.cpp |
|
H A D | quickfindpattern.cpp |
|
/glogg/src/ |
H A D | tabbedcrawlerwidget.cpp | 86 LOG(logDEBUG) << "addTab, count = " << count(); in addTab() 89 if ( count() > 1 ) in addTab() 99 if ( count() <= 1 ) in removeTab() 127 setCurrentIndex( ( currentIndex() + 1 ) % count() ); in keyPressEvent() 132 setCurrentIndex( ( currentIndex() - 1 >= 0 ) ? currentIndex() - 1 : count() - 1 ); in keyPressEvent() 137 if ( new_index <= count() ) in keyPressEvent() 142 setCurrentIndex( count() - 1 ); in keyPressEvent()
|
H A D | main.cpp | 116 if ( vm.count("help") ) { in main() 121 if ( vm.count("version") ) { in main() 126 if ( vm.count( "debug" ) ) in main() 129 if ( vm.count( "multi" ) ) in main() 132 if ( vm.count( "new-session" ) ) in main() 135 if ( vm.count( "load-session" ) ) in main() 139 if ( vm.count( "log" ) ) in main() 144 if ( vm.count( s ) ) in main() 147 if ( vm.count("input-file") ) { in main()
|
H A D | filtersdialog.cpp | 91 filterListWidget->setCurrentRow( filterListWidget->count() - 1 ); in on_addFilterButton_clicked() 104 int count = filterListWidget->count(); in on_removeFilterButton_clicked() local 105 if ( index < count ) { in on_removeFilterButton_clicked() 111 filterListWidget->setCurrentRow( count - 1 ); in on_removeFilterButton_clicked() 135 if ( ( index >= 0 ) && ( index < ( filterListWidget->count() - 1 ) ) ) { in on_downFilterButton_clicked() 165 if ( filterListWidget->selectedItems().count() >= 1 ) in updatePropertyFields() 199 selectedRow_ < ( filterListWidget->count() - 1 ) ); in updatePropertyFields()
|
H A D | viewtools.cpp | 40 ( std::chrono::steady_clock::now() - last_update_ ).count() > TIMER_PERIOD_MS ) ) in move() 67 ( std::chrono::steady_clock::now() - last_update_ ).count() > TIMER_PERIOD_MS ) ) { in timerEvent()
|
H A D | perfcounter.h | 38 steady_clock::now() - first_event_date_ ).count() < 1000000 ) { in addEvent()
|
H A D | persistentinfo.cpp | 54 if ( settings_->childKeys().count() == 0 ) { in migrateAndInit()
|
H A D | savedsearches.cpp | 130 << savedSearches_.count() << " elements"; in retrieveFromStorage()
|
/glogg/glogg/tests/ |
H A D | logdataPerfTest.cpp |
|
H A D | logdataTest.cpp |
|
H A D | testlogdata.cpp |
|
H A D | test_utils.h |
|
H A D | logfiltereddataPerfTest.cpp |
|
/glogg/tests/ |
H A D | logdataPerfTest.cpp | 64 ASSERT_THAT( progressSpy.count(), log_data.getFileSize() / (5LL*1024*1024) + 2 ); in TEST_F() 65 ASSERT_THAT( endSpy.count(), 1 ); in TEST_F() 120 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F() 123 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F() 139 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F() 142 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F()
|
H A D | logdataTest.cpp | 54 ASSERT_THAT( finishedSpy.count(), 1 ); in TEST_F() 74 ASSERT_THAT( changedSpy.count(), 1 ); in TEST_F() 75 ASSERT_THAT( finishedSpy.count(), 2 ); in TEST_F() 98 ASSERT_THAT( changedSpy.count(), 2 ); in TEST_F() 99 ASSERT_THAT( finishedSpy.count(), 1 ); in TEST_F() 117 ASSERT_THAT( changedSpy.count(), 3 ); in TEST_F() 118 ASSERT_THAT( finishedSpy.count(), 1 ); in TEST_F() 163 ASSERT_THAT( endSpy.count(), 1 ); in TEST_F()
|
H A D | testlogdata.cpp | 90 QCOMPARE( finishedSpy.count(), 1 ); in multipleLoad() 114 QCOMPARE( finishedSpy.count(), 3 ); in multipleLoad() 129 QCOMPARE( finishedSpy.count(), 4 ); in multipleLoad()
|
H A D | test_utils.h | 24 << Elapsed.count() * 0.001 << "ms" << endl; in ~TestTimer() 41 bool result = count() > 0;
|
H A D | logfiltereddataPerfTest.cpp | 114 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F() 118 ASSERT_THAT(list.count(), VBL_LINE_PER_PAGE); in TEST_F()
|
12