OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:line_re
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/unittest/
match_output.py
7
for
line_re
in f_re:
8
line_re
=
line_re
.rstrip()
9
if not
line_re
:
11
if
line_re
[0] == '#':
17
if re.search(
line_re
, line):
19
# print 'match: %s =~ %s' % (line,
line_re
)
22
print 'no match for: %s' % (
line_re
)
/external/chromium_org/tools/mac/
symbolicate_crash.py
133
line_re
= re.compile('^Thread ([0-9]+)( Crashed)?:(.*)')
140
while
line_re
.match(line) or in_stack:
142
matches =
line_re
.match(line)
Completed in 191 milliseconds