Home
last modified time | relevance | path

Searched refs:regexp (Results 1 – 2 of 2) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dapollo_lib.py337 regexp = r'\d+\s+(?P<m1>....)\s(?P<m2>....)'
338 match = re.match(regexp, res[0][0])
352 regexp = ('\d+\s+(?P<Mac>....\s....\s....)\s'
354 match = re.search(regexp, res[0][0])
668 def music_control_events(self, cmd, regexp=None, wait=.5): argument
692 if not regexp:
697 regexp = cmd_regexp[cmd]
702 if re.search(regexp, line):
/tools/repohooks/tools/
Dcpplint.py3075 regexp = r'(\w(\w|::|\*|\&|\s)*)\(' # decls * & space::name( ...
3076 match_result = Match(regexp, line)