Home
last modified time | relevance | path

Searched refs:comment_regex (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/grpc-grpc/src/objective-c/
H A Dchange-comments.py59 comment_regex = r"^(\s*)//\s(.*)$" variable
62 return re.search(comment_regex, line)
73 match = re.search(comment_regex, line)
77 match = re.search(comment_regex, line)
/aosp_15_r20/external/autotest/client/common_lib/cros/
H A Dtextfsm.py529 comment_regex = re.compile(r'^\s*#') variable in TextFSM
683 if self.comment_regex.match(line):
751 if line and not self.comment_regex.match(line):
777 if self.comment_regex.match(line):
/aosp_15_r20/external/ComputeLibrary/
H A DSConscript146comment_regex = re.compile(r'//.*?$|/\*.*?\*/|\'(?:\\.|[^\\\'])*\'|"(?:\\.|[^\\"])*"', re.DOTALL |…
147 return re.sub(comment_regex, replace_with_empty, code)