Home
last modified time | relevance | path

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

/art/tools/
Dcpplint.py374 matched = _RE_SUPPRESSION.search(raw_line)
375 if matched:
376 category = matched.group(1)
1694 matched = Match(r'^[^{;)}]*([{;)}])(.*)$', line)
1695 if not matched:
1698 token = matched.group(1)
1725 line = matched.group(2)
2064 matched = Match((r'\s*(DISALLOW_COPY_AND_ASSIGN|'
2067 if not matched:
2072 '%s must be in the private: section' % matched.group(1))
[all …]
/art/cmdline/
Dcmdline_parser.h526 bool matched = false; // At least one argument definition has been matched? in Parse() local
536 matched = true; in Parse()
542 if (matched == false) { in Parse()