Searched refs:raw_line (Results 1 – 5 of 5) sorted by relevance
/external/autotest/tko/ |
D | status_lib_unittest.py | 12 raw_line = raw_line_temp % status_lib.DEFAULT_BLACKLIST[0] 13 cleaned = status_lib.clean_raw_line(raw_line) 20 raw_line = raw_line_temp % blacklist 21 cleaned = status_lib.clean_raw_line(raw_line, blacklist)
|
D | status_lib.py | 24 def clean_raw_line(raw_line, blacklist=DEFAULT_BLACKLIST): argument 26 return re.sub('|'.join(blacklist), '', raw_line)
|
/external/autotest/tko/parsers/ |
D | version_1.py | 361 raw_line = status_lib.clean_raw_line(buffer.get()) 362 line = status_line.parse_line(raw_line) 364 ignored_lines.append(raw_line) 377 buffer, raw_line, stack.size() - 1, subdir_stack[-1],
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 360 def ParseNolintSuppressions(filename, raw_line, linenum, error): argument 374 matched = _RE_SUPPRESSION.search(raw_line) 1965 raw_line = raw[linenum] 3447 def CheckCStyleCast(filename, linenum, line, raw_line, cast_type, pattern, argument 3501 ('MockCallback<' not in raw_line and 3502 '/*' not in raw_line)):
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 455 def ParseNolintSuppressions(filename, raw_line, linenum, error): argument 469 matched = _RE_SUPPRESSION.search(raw_line) 2299 raw_line = raw[linenum] 4136 def CheckCStyleCast(filename, linenum, line, raw_line, cast_type, pattern, argument 4216 if '/*' in raw_line:
|