Home
last modified time | relevance | path

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

/art/tools/checker/
DREADME19 later than lines matched against any preceeding checks. Output
23 later than lines matched against any preceeding in-order checks.
27 later than lines matched against any preceeding checks and
28 earlier than lines matched against any subsequent checks.
32 matched the previous check. Cannot be used after any but the
/art/tools/
Dcpplint.py378 matched = _RE_SUPPRESSION.search(raw_line)
379 if matched:
380 category = matched.group(1)
1720 matched = Match(r'^[^{;)}]*([{;)}])(.*)$', line)
1721 if not matched:
1724 token = matched.group(1)
1751 line = matched.group(2)
2090 matched = Match((r'\s*(DISALLOW_COPY_AND_ASSIGN|'
2093 if not matched:
2098 '%s must be in the private: section' % matched.group(1))
[all …]
/art/cmdline/
Dcmdline_parser.h525 bool matched = false; // At least one argument definition has been matched? in Parse() local
535 matched = true; in Parse()
541 if (matched == false) { in Parse()