Searched defs:exit_counts (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dparser.py226 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 967 milliseconds