Lines Matching refs:tokens
26 tokens = line.split()
28 if len(tokens) < 4:
32 date_time_str = "%s-%s %s" % (THIS_YEAR, tokens[0], tokens[1])
39 if (len(tokens[2]) > 2 and tokens[2] == "D/ModuleDef:" and
40 tokens[3][-1] == ":"):
41 return True, tokens[3][:-1], tokens[4], timestamp
58 tokens = line.split()
61 if len(tokens) < 7:
65 if len(tokens[0]) > 2 and tokens[0][0] == "[" and tokens[0][-1] == "]":
66 test_module_name = tokens[0][1:-1]
68 date_time_str = "%s-%s %s" % (THIS_YEAR, tokens[1], tokens[2])
74 if tokens[4] == "[Test" and tokens[5] == "Case]":
75 test_case_name = tokens[7]
76 if len(tokens) == 9 and tokens[8] in ["PASS", "FAIL", "SKIP", "ERROR"]:
78 elif len(tokens) == 8: