Home | History | Annotate | Download | only in analyzer

Lines Matching refs:line

35     for line in f:
36 if ("Miscellaneous Ungrouped Timers" in line) :
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
39 s = line.split()
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
45 s = line.split()
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
48 s = line.split()
50 if (("The % of reachable basic blocks" in line) and (Mode == 1)) :
51 s = line.split()
53 if (("The # of times we reached the max number of steps" in line) and (Mode == 1)) :
54 s = line.split()
56 if (("The maximum number of basic blocks in a function" in line) and (Mode == 1)) :
57 s = line.split()
60 if (("The # of steps executed" in line) and (Mode == 1)) :
61 s = line.split()
63 if (("The # of times we inlined a call" in line) and (Mode == 1)) :
64 s = line.split()
66 if (("The # of times we split the path due to imprecise dynamic dispatch info" in line) and (Mode == 1)) :
67 s = line.split()
69 if ((") Total" in line) and (Mode == 1)) :
70 s = line.split()