Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 14 of 14) sorted by relevance

/glogg/glogg/src/
H A Dquickfindpattern.cpp
H A Dquickfindpattern.h
/glogg/src/
H A Dquickfindpattern.cpp74 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 Dquickfindpattern.h71 QList<QuickFindMatch>& matches ) const;
/glogg/glogg/src/data/
H A Dlogfiltereddataworkerthread.cpp
H A Dlogfiltereddataworkerthread.h
/glogg/src/data/
H A Dlogfiltereddataworkerthread.cpp30 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 Dlogfiltereddataworkerthread.h64 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 DTODO
/glogg/
H A DTODO20 - Search slows down when there is a large number of matches
/glogg/glogg/doc/
H A Ddocumentation.markdown
/glogg/doc/
H A Ddocumentation.markdown44 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 Dtestlogfiltereddata.cpp
/glogg/tests/
H A Dtestlogfiltereddata.cpp94 qint64 matches[] = { 0, 15, 20, 135 }; in simpleSearchTest() local
109 QCOMPARE( filteredData_->getNbLine(), matches[3] ); in simpleSearchTest()