Searched refs:index (Results 1 – 25 of 30) sorted by relevance
12
/glogg/glogg/src/ |
H A D | filtersdialog.cpp |
|
H A D | marks.cpp |
|
H A D | tabbedcrawlerwidget.cpp |
|
H A D | optionsdialog.cpp |
|
H A D | tabbedcrawlerwidget.h |
|
H A D | marks.h |
|
H A D | optionsdialog.h |
|
H A D | mainwindow.h |
|
H A D | mainwindow.cpp |
|
/glogg/src/ |
H A D | filtersdialog.cpp | 53 int index = foreColorBox->findText( DEFAULT_FORE_COLOUR ); in FiltersDialog() local 54 foreColorBox->setCurrentIndex( index ); in FiltersDialog() 55 index = backColorBox->findText( DEFAULT_BACK_COLOUR ); in FiltersDialog() 56 backColorBox->setCurrentIndex( index ); in FiltersDialog() 96 int index = filterListWidget->currentRow(); in on_removeFilterButton_clicked() local 97 LOG(logDEBUG) << "on_removeFilterButton_clicked() index " << index; in on_removeFilterButton_clicked() 99 if ( index >= 0 ) { in on_removeFilterButton_clicked() 100 filterSet->filterList.removeAt( index ); in on_removeFilterButton_clicked() 102 delete filterListWidget->takeItem( index ); in on_removeFilterButton_clicked() 105 if ( index < count ) { in on_removeFilterButton_clicked() [all …]
|
H A D | marks.cpp | 38 int index; in addMark() local 39 if ( ! lookupLineNumber< QList<Mark> >( marks_, line, &index ) ) in addMark() 43 << " (index " << index << ")"; in addMark() 44 marks_.insert( index, Mark( line ) ); in addMark() 65 int index; in isLineMarked() local 66 return lookupLineNumber< QList<Mark> >( marks_, line, &index ); in isLineMarked() 77 int index; in deleteMark() local 79 if ( lookupLineNumber< QList<Mark> >( marks_, line, &index ) ) in deleteMark() 81 marks_.removeAt( index ); in deleteMark()
|
H A D | tabbedcrawlerwidget.cpp | 69 int index = QTabWidget::addTab( page, label ); in addTab() local 77 [ this, index ]( DataStatus status ) { setTabDataStatus( index, status ); } ); in addTab() 84 myTabBar_.setTabButton( index, QTabBar::RightSide, icon_label ); in addTab() 92 return index; in addTab() 95 void TabbedCrawlerWidget::removeTab( int index ) in removeTab() argument 97 QTabWidget::removeTab( index ); in removeTab() 152 void TabbedCrawlerWidget::setTabDataStatus( int index, DataStatus status ) in setTabDataStatus() argument 154 LOG(logDEBUG) << "TabbedCrawlerWidget::setTabDataStatus " << index; in setTabDataStatus() 157 myTabBar_.tabButton( index, QTabBar::RightSide ) ); in setTabDataStatus()
|
H A D | optionsdialog.cpp | 117 int index; in getRegexpIndex() local 121 index = 1; in getRegexpIndex() 124 index = 0; in getRegexpIndex() 128 return index; in getRegexpIndex() 132 SearchRegexpType OptionsDialog::getRegexpTypeFromIndex( int index ) const in getRegexpTypeFromIndex() 136 switch ( index ) { in getRegexpTypeFromIndex()
|
H A D | tabbedcrawlerwidget.h | 43 void removeTab( int index ); 46 void setTabDataStatus( int index, DataStatus status );
|
H A D | marks.h | 63 qint64 getLineMarkedByIndex( int index ) const in getLineMarkedByIndex() argument 64 { return marks_[index].lineNumber(); } in getLineMarkedByIndex()
|
H A D | optionsdialog.h | 63 SearchRegexpType getRegexpTypeFromIndex( int index ) const;
|
H A D | mainwindow.h | 114 void closeTab( int index ); 116 void currentTabChanged( int index );
|
/glogg/glogg/src/data/ |
H A D | compressedlinestorage.cpp |
|
H A D | compressedlinestorage.h |
|
H A D | logfiltereddata.h |
|
H A D | logfiltereddata.cpp |
|
/glogg/src/data/ |
H A D | compressedlinestorage.cpp | 335 uint64_t CompressedLinePositionStorage::at( uint32_t index ) const in at() 342 if ( index < first_long_line_ ) { in at() 343 if ( ( index == last_read->index + 1 ) && ( index % BLOCK_SIZE != 0 ) ) { in at() 350 char* block = block32_index_[ index / BLOCK_SIZE ]; in at() 353 for ( uint32_t i = 0; i < index % BLOCK_SIZE; i++ ) { in at() 360 const uint32_t index_in_64 = index - first_long_line_; in at() 361 if ( ( index == last_read->index + 1 ) && ( index_in_64 % BLOCK_SIZE != 0 ) ) { in at() 379 last_read->index = index; in at()
|
H A D | compressedlinestorage.h | 155 index = UINT32_MAX - 1U; in Cache() 160 uint32_t index; member
|
H A D | logfiltereddata.h | 68 qint64 getMatchingLineNumber( int index ) const; 86 FilteredLineType filteredLineTypeByIndex( int index ) const;
|
H A D | logfiltereddata.cpp | 139 int index; // Not used in isLineInMatchingList() local 141 matching_lines_, lineNumber, &index); in isLineInMatchingList() 166 LogFilteredData::filteredLineTypeByIndex( int index ) const in filteredLineTypeByIndex() 180 return filteredItemsCache_[ index ].type(); in filteredLineTypeByIndex()
|
12