Home
last modified time | relevance | path

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

/external/chromium_org/tools/
Dnocompile_driver.py95 def ParseExpectation(expectation_string): argument
107 assert expectation_string is not None
109 match = EXTRACT_EXPECTATION_RE.match(expectation_string)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
Dtest_expectations.py238 def _tokenize_line(cls, filename, expectation_string, line_number): argument
249 expectation_line.original_string = expectation_string
253 comment_index = expectation_string.find("#")
255 comment_index = len(expectation_string)
257 expectation_line.comment = expectation_string[comment_index + 1:]
259 remaining_string = re.sub(r"\s+", " ", expectation_string[:comment_index].strip())
448 …sed_expectation_to_string = dict([[parsed_expectation, expectation_string] for expectation_string,…
Dtest_expectations_unittest.py776 …sed_expectation_to_string = dict([[parsed_expectation, expectation_string] for expectation_string,…