Searched refs:cur_file_data (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcollector.py37 self.cur_file_data = None
53 if self.arcs and self.cur_file_data:
55 self.cur_file_data[pair] = None
56 self.cur_file_data, self.last_line = self.data_stack.pop()
62 self.data_stack.append((self.cur_file_data, self.last_line))
73 self.cur_file_data = self.data[tracename]
75 self.cur_file_data = None
81 if self.cur_file_data is not None:
84 self.cur_file_data[(self.last_line, frame.f_lineno)] = None
87 self.cur_file_data[fram
[all...]
H A Dtracer.c94 PyObject * cur_file_data; member in struct:__anon11461
155 self->cur_file_data = NULL;
228 /* Record a pair of integers in self->cur_file_data. */
238 if (PyDict_SetItem(self->cur_file_data, t, Py_None) < 0) {
288 if (self->tracing_arcs && self->cur_file_data) {
294 self->cur_file_data = self->data_stack[self->depth].file_data;
324 self->data_stack[self->depth].file_data = self->cur_file_data;
367 self->cur_file_data = file_data;
374 self->cur_file_data = NULL;
387 if (self->tracing_arcs && self->cur_file_data) {
[all...]

Completed in 134 milliseconds