Searched refs:matches (Results 1 – 14 of 14) sorted by relevance
/glogg/glogg/src/ |
H A D | quickfindpattern.cpp |
|
H A D | quickfindpattern.h |
|
/glogg/src/ |
H A D | quickfindpattern.cpp | 74 QList<QuickFindMatch>& matches ) const in matchLine() 76 matches.clear(); in matchLine() 83 matches << QuickFindMatch ( match.capturedStart(), match.capturedLength() ); in matchLine() 87 return ( matches.count() > 0 ); in matchLine() 112 QRegularExpressionMatchIterator matches = regexp_.globalMatch(line); in isLineMatchingBackward() local 114 while ( matches.hasNext() ) { in isLineMatchingBackward() 115 QRegularExpressionMatch nextMatch = matches.peekNext(); in isLineMatchingBackward() 120 lastMatch = matches.next(); in isLineMatchingBackward()
|
H A D | quickfindpattern.h | 71 QList<QuickFindMatch>& matches ) const;
|
/glogg/glogg/src/data/ |
H A D | logfiltereddataworkerthread.cpp |
|
H A D | logfiltereddataworkerthread.h |
|
/glogg/src/data/ |
H A D | logfiltereddataworkerthread.cpp | 30 void SearchData::getAll( int* length, SearchResultArray* matches, in getAll() argument 39 *matches = matches_; in getAll() 43 SearchResultArray&& matches ) in setAll() argument 48 matches_ = matches; in setAll() 52 const SearchResultArray& matches, LineNumber lines ) in addAll() argument 62 std::begin( matches ), std::end( matches ) ); in addAll()
|
H A D | logfiltereddataworkerthread.h | 64 void getAll( int* length, SearchResultArray* matches, 69 void setAll( int length, SearchResultArray&& matches ); 71 void addAll( int length, const SearchResultArray& matches, LineNumber nbLinesProcessed );
|
/glogg/glogg/ |
H A D | TODO |
|
/glogg/ |
H A D | TODO | 20 - Search slows down when there is a large number of matches
|
/glogg/glogg/doc/ |
H A D | documentation.markdown |
|
/glogg/doc/ |
H A D | documentation.markdown | 44 of the screen offers a view of the position of matches in the log file. Matches 58 In addition to regexp matches, _glogg_ enable the user to mark any interesting 62 Marks are combined with matches and showed in the filtered window. They also
|
/glogg/glogg/tests/ |
H A D | testlogfiltereddata.cpp |
|
/glogg/tests/ |
H A D | testlogfiltereddata.cpp | 94 qint64 matches[] = { 0, 15, 20, 135 }; in simpleSearchTest() local 109 QCOMPARE( filteredData_->getNbLine(), matches[3] ); in simpleSearchTest()
|