Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 30) sorted by relevance

12

/glogg/glogg/src/
H A Dfiltersdialog.cpp
H A Dmarks.cpp
H A Dtabbedcrawlerwidget.cpp
H A Doptionsdialog.cpp
H A Dtabbedcrawlerwidget.h
H A Dmarks.h
H A Doptionsdialog.h
H A Dmainwindow.h
H A Dmainwindow.cpp
/glogg/src/
H A Dfiltersdialog.cpp53 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 Dmarks.cpp38 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 Dtabbedcrawlerwidget.cpp69 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 Doptionsdialog.cpp117 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 Dtabbedcrawlerwidget.h43 void removeTab( int index );
46 void setTabDataStatus( int index, DataStatus status );
H A Dmarks.h63 qint64 getLineMarkedByIndex( int index ) const in getLineMarkedByIndex() argument
64 { return marks_[index].lineNumber(); } in getLineMarkedByIndex()
H A Doptionsdialog.h63 SearchRegexpType getRegexpTypeFromIndex( int index ) const;
H A Dmainwindow.h114 void closeTab( int index );
116 void currentTabChanged( int index );
/glogg/glogg/src/data/
H A Dcompressedlinestorage.cpp
H A Dcompressedlinestorage.h
H A Dlogfiltereddata.h
H A Dlogfiltereddata.cpp
/glogg/src/data/
H A Dcompressedlinestorage.cpp335 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 Dcompressedlinestorage.h155 index = UINT32_MAX - 1U; in Cache()
160 uint32_t index; member
H A Dlogfiltereddata.h68 qint64 getMatchingLineNumber( int index ) const;
86 FilteredLineType filteredLineTypeByIndex( int index ) const;
H A Dlogfiltereddata.cpp139 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