OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:status_re
(Results
1 - 2
of
2
) sorted by null
/external/clang/www/
make_cxx_dr_status
34
status_re
= re.compile(r'\bdr([0-9]+): (.*)')
variable
41
for match in re.finditer(
status_re
, file(test_cpp, 'r').read()):
/external/autotest/site_utils/
generate_test_report
225
def _CollectEndTimes(self, status_raw,
status_re
='', is_end=True):
234
@param
status_re
: status regex to seek (e.g. GOOD|FAIL)
247
'END' if is_end else 'START',
status_re
, localtime_re))
355
status_re
= r'GOOD|%s|%s' % (failure_tags, warning_tag)
356
timestamp, localtime = self._CollectEndTimes(status_raw,
status_re
)
Completed in 328 milliseconds