/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/python/cpython2/Lib/ |
D | nntplib.py | 338 for raw_line in raw_lines: 339 match = line_pat.search(raw_line.strip()) 514 for raw_line in raw_lines: 515 match = line_pat.search(raw_line.strip())
|
/external/autotest/tko/parsers/ |
D | version_1.py | 388 raw_line = status_lib.clean_raw_line(buffer.get()) 389 line = status_line.parse_line(raw_line) 391 ignored_lines.append(raw_line) 404 buffer, raw_line, stack.size() - 1, subdir_stack[-1],
|
/external/python/cpython3/Lib/ |
D | nntplib.py | 621 for raw_line in lines: 622 match = line_pat.search(raw_line.strip()) 847 for raw_line in raw_lines: 848 match = line_pat.search(raw_line.strip())
|
/external/u-boot/scripts/ |
D | checkpatch.pl | 1633 sub raw_line { subroutine 1652 my $stat_real = raw_line($linenr, 0); 1654 $stat_real = $stat_real . "\n" . raw_line($count, 0); 1665 $herectx .= raw_line($linenr, $n) . "\n"; 3554 my $stat_real = raw_line($linenr, $cond_lines); 4584 my $rl = raw_line($linenr, $n); 4742 $stat_real = raw_line($linenr, $cond_lines) 5831 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0)); 6062 my $rl = raw_line($linenr, $n);
|
/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:
|
/external/libaom/libaom/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:
|
/external/google-styleguide/cpplint/ |
D | cpplint.py | 577 def ParseNolintSuppressions(filename, raw_line, linenum, error): argument 590 matched = Search(r'\bNOLINT(NEXTLINE)?\b(\([^)]+\))?', raw_line)
|