OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:score_and_name
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/tools/perf/benchmarks/
canvasmark.py
38
score_and_name
= output.split(' [', 2)
39
assert len(
score_and_name
) == 2, \
40
'Unexpected result format "%s"' %
score_and_name
41
score = int(
score_and_name
[0])
42
name =
score_and_name
[1][:-1]
octane.py
64
score_and_name
= output.split(': ', 2)
65
assert len(
score_and_name
) == 2, \
66
'Unexpected result format "%s"' %
score_and_name
67
if 'Skipped' not in
score_and_name
[1]:
68
name =
score_and_name
[0]
69
score = int(
score_and_name
[1])
Completed in 1742 milliseconds