Home
last modified time | relevance | path

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

/glogg/glogg/src/
H A Dquickfindpattern.cpp
H A Dcrawlerwidget.cpp
H A Dversionchecker.cpp
H A Dfilterset.cpp
H A Dabstractlogview.cpp
/glogg/src/
H A Dquickfindpattern.cpp82 QRegularExpressionMatch match = matchIterator.next(); in matchLine() local
83 matches << QuickFindMatch ( match.capturedStart(), match.capturedLength() ); in matchLine()
95 QRegularExpressionMatch match = regexp_.match( line, column ); in isLineMatching() local
96 if ( match.hasMatch() ) { in isLineMatching()
97 lastMatchStart_ = match.capturedStart(); in isLineMatching()
98 lastMatchEnd_ = match.capturedEnd() - 1; in isLineMatching()
H A Dcrawlerwidget.cpp1128 QRegularExpressionMatch match = regex.match( string ); in CrawlerWidgetContext() local
1129 if ( match.hasMatch() ) { in CrawlerWidgetContext()
1130 sizes_ = { match.captured(1).toInt(), match.captured(2).toInt() }; in CrawlerWidgetContext()
1141 match = case_refresh_regex.match( string ); in CrawlerWidgetContext()
1142 if ( match.hasMatch() ) { in CrawlerWidgetContext()
1143 ignore_case_ = ( match.captured(1).toInt() == 1 ); in CrawlerWidgetContext()
1144 auto_refresh_ = ( match.captured(2).toInt() == 1 ); in CrawlerWidgetContext()
1156 match = follow_regex.match( string ); in CrawlerWidgetContext()
1157 if ( match.hasMatch() ) { in CrawlerWidgetContext()
1158 follow_file_ = ( match.captured(1).toInt() == 1 ); in CrawlerWidgetContext()
H A Dversionchecker.cpp148 QRegularExpressionMatch currentMatch = version_regex.match( current ); in isVersionNewer()
157 QRegularExpressionMatch newMatch = version_regex.match( new_version ); in isVersionNewer()
H A Dfilterset.cpp98 return regexp_.match( string ).hasMatch(); in hasMatch()
H A Dabstractlogview.cpp1566 foreach( const QuickFindMatch match, qfMatchList ) { in drawTextArea()
1567 int start = match.startColumn() - firstCol; in drawTextArea()
1568 int end = start + match.length(); in drawTextArea()
1574 column = qMin( start + match.length() - 1, nbCols ); in drawTextArea()
/glogg/glogg/doc/
H A Ddocumentation.markdown
/glogg/doc/
H A Ddocumentation.markdown40 `.*` will match any sequence of character on a single line, but _glogg_ will only
43 In addition to the filtered window, the match overview on the right hand side
63 appears as blue lines in the match overview.
/glogg/glogg/src/data/
H A Dlogfiltereddataworkerthread.cpp
/glogg/src/data/
H A Dlogfiltereddataworkerthread.cpp244 if ( regexp_.match( lines[j] ).hasMatch() ) { in doSearch()