Searched refs:match (Results 1 – 14 of 14) sorted by relevance
82 QRegularExpressionMatch match = matchIterator.next(); in matchLine() local83 matches << QuickFindMatch ( match.capturedStart(), match.capturedLength() ); in matchLine()95 QRegularExpressionMatch match = regexp_.match( line, column ); in isLineMatching() local96 if ( match.hasMatch() ) { in isLineMatching()97 lastMatchStart_ = match.capturedStart(); in isLineMatching()98 lastMatchEnd_ = match.capturedEnd() - 1; in isLineMatching()
1128 QRegularExpressionMatch match = regex.match( string ); in CrawlerWidgetContext() local1129 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()
148 QRegularExpressionMatch currentMatch = version_regex.match( current ); in isVersionNewer()157 QRegularExpressionMatch newMatch = version_regex.match( new_version ); in isVersionNewer()
98 return regexp_.match( string ).hasMatch(); in hasMatch()
1566 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()
40 `.*` will match any sequence of character on a single line, but _glogg_ will only43 In addition to the filtered window, the match overview on the right hand side63 appears as blue lines in the match overview.
244 if ( regexp_.match( lines[j] ).hasMatch() ) { in doSearch()