HomeSort by relevance Sort by last modified time
    Searched refs:exit_counts (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
results.py 111 exit_counts = self.parser.exit_counts()
112 return [l1 for l1,count in exit_counts.items() if count > 1]
116 exit_counts = self.parser.exit_counts()
117 return sum([count for count in exit_counts.values() if count > 1])
142 exit_counts = self.parser.exit_counts()
146 exits = exit_counts[lnum]
parser.py 226 def exit_counts(self): member in class:CodeParser
233 exit_counts = {}
244 if l1 not in exit_counts:
245 exit_counts[l1] = 0
246 exit_counts[l1] += 1
251 if l in exit_counts:
252 exit_counts[l] -= 1
254 return exit_counts
255 exit_counts = expensive(exit_counts) variable in class:CodeParser
    [all...]

Completed in 783 milliseconds