Lines Matching refs:match
353 match = must_match('[^[\\]{}:,\\s\']+',
355 raise QAPIParseError(self, "stray '%s'" % match.group(0))
437 return re.match(r'@([^:]*): *', string)
521 and (match := self._match_at_name_colon(line))):
522 doc.new_feature(self.info, match.group(1))
523 text = line[match.end():]
531 elif match := self._match_at_name_colon(line):
537 % match.group(1))
539 and (match := self._match_at_name_colon(line))):
540 doc.new_argument(self.info, match.group(1))
541 text = line[match.end():]
546 elif match := re.match(
561 if 'Note' in match.group(1):
570 if 'Example' in match.group(1):
578 doc.new_tagged_section(self.info, match.group(1))
579 text = line[match.end():]
599 if match := self._match_at_name_colon(line):
603 % match.group(1))