/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_hotshot.py | 92 f_lineno = f.func_code.co_firstlineno 96 (ENTER, ("test_hotshot", f_lineno, "f")), 97 (LINE, ("test_hotshot", f_lineno+1, "f")), 98 (LINE, ("test_hotshot", f_lineno+2, "f")), 99 (EXIT, ("test_hotshot", f_lineno, "f")),
|
test_sys_settrace.py | 240 self.events.append((frame.f_lineno, event)) 244 self.events.append((frame.f_lineno, event)) 441 frame.f_lineno == f.func_code.co_firstlineno + 2): 456 # 'Jump' tests: assigning to frame.f_lineno within a trace function 474 if event == 'line' and frame.f_lineno == firstLine + self.jumpFrom: 478 frame.f_lineno = firstLine + self.jumpTo 480 frame.f_lineno = self.jumpTo 681 # This verifies that you can't set f_lineno via _getframe or similar 686 previous_frame.f_lineno = previous_frame.f_lineno [all...] |
test_struct.py | 42 lineno = inspect.currentframe().f_lineno - 1 331 lineno = inspect.currentframe().f_lineno - 1
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_hotshot.py | 92 f_lineno = f.func_code.co_firstlineno 96 (ENTER, ("test_hotshot", f_lineno, "f")), 97 (LINE, ("test_hotshot", f_lineno+1, "f")), 98 (LINE, ("test_hotshot", f_lineno+2, "f")), 99 (EXIT, ("test_hotshot", f_lineno, "f")),
|
test_sys_settrace.py | 240 self.events.append((frame.f_lineno, event)) 244 self.events.append((frame.f_lineno, event)) 441 frame.f_lineno == f.func_code.co_firstlineno + 2): 456 # 'Jump' tests: assigning to frame.f_lineno within a trace function 474 if event == 'line' and frame.f_lineno == firstLine + self.jumpFrom: 478 frame.f_lineno = firstLine + self.jumpTo 480 frame.f_lineno = self.jumpTo 681 # This verifies that you can't set f_lineno via _getframe or similar 686 previous_frame.f_lineno = previous_frame.f_lineno [all...] |
test_struct.py | 42 lineno = inspect.currentframe().f_lineno - 1 331 lineno = inspect.currentframe().f_lineno - 1
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
frameobject.h | 42 directly. As of 2.3 f_lineno is only valid when tracing is 46 int f_lineno; /* Current line number */ member in struct:_frame
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
frameobject.h | 42 directly. As of 2.3 f_lineno is only valid when tracing is 46 int f_lineno; /* Current line number */ member in struct:_frame
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
collector.py | 48 # event, frame.f_code.co_filename, frame.f_lineno)) 83 #print("lin", self.last_line, frame.f_lineno) 84 self.cur_file_data[(self.last_line, frame.f_lineno)] = None 86 #print("lin", frame.f_lineno) 87 self.cur_file_data[frame.f_lineno] = None 88 self.last_line = frame.f_lineno 97 #print("exc", self.last_line, frame.f_lineno)
|
tracer.c | 263 printf("trace: %s @ %s %d\n", what_sym[what], MyText_AS_STRING(frame->f_code->co_filename), frame->f_lineno); 268 if (strstr(MyText_AS_STRING(frame->f_code->co_filename), start_file) && frame->f_lineno == start_line) { 293 SHOWLOG(self->depth, frame->f_lineno, frame->f_code->co_filename, "missedreturn"); 371 SHOWLOG(self->depth, frame->f_lineno, filename, "traced"); 375 SHOWLOG(self->depth, frame->f_lineno, filename, "skipped"); 394 SHOWLOG(self->depth, frame->f_lineno, frame->f_code->co_filename, "return"); 404 SHOWLOG(self->depth, frame->f_lineno, frame->f_code->co_filename, "line"); 409 if (CTracer_record_pair(self, self->last_line, frame->f_lineno) < 0) { 415 PyObject * this_line = MyInt_FromLong(frame->f_lineno); 428 self->last_line = frame->f_lineno; [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/fullcoverage/ |
encodings.py | 35 self.traces.append((args, frame.f_lineno))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
bdb.py | 119 return frame.f_lineno >= self.stoplineno 130 lineno = frame.f_lineno 190 self._set_stopinfo(frame, frame, frame.f_lineno+1) 346 stack.append((f, f.f_lineno)) 537 if b.line != frame.f_lineno: 552 b.func_first_executable_line = frame.f_lineno 554 if b.func_first_executable_line != frame.f_lineno: 624 line = linecache.getline(fn, frame.f_lineno, frame.f_globals) 625 print '+++', fn, frame.f_lineno, name, ':', line.strip()
|
trace.py | 617 lineno = frame.f_lineno 632 lineno = frame.f_lineno 644 lineno = frame.f_lineno
|
inspect.py | 203 f_lineno current line number in Python source code [all...] |
pdb.py | 154 or frame.f_lineno<= 0): 705 self.curframe.f_lineno = arg 801 first = max(1, self.curframe.f_lineno - 5) 820 if lineno == self.curframe.f_lineno: [all...] |
traceback.py | 300 lineno = f.f_lineno
|
warnings.py | 192 lineno = caller.f_lineno
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
bdb.py | 119 return frame.f_lineno >= self.stoplineno 130 lineno = frame.f_lineno 190 self._set_stopinfo(frame, frame, frame.f_lineno+1) 346 stack.append((f, f.f_lineno)) 537 if b.line != frame.f_lineno: 552 b.func_first_executable_line = frame.f_lineno 554 if b.func_first_executable_line != frame.f_lineno: 624 line = linecache.getline(fn, frame.f_lineno, frame.f_globals) 625 print '+++', fn, frame.f_lineno, name, ':', line.strip()
|
trace.py | 617 lineno = frame.f_lineno 632 lineno = frame.f_lineno 644 lineno = frame.f_lineno
|
inspect.py | 203 f_lineno current line number in Python source code [all...] |
pdb.py | 154 or frame.f_lineno<= 0): 705 self.curframe.f_lineno = arg 801 first = max(1, self.curframe.f_lineno - 5) 820 if lineno == self.curframe.f_lineno: [all...] |
traceback.py | 300 lineno = f.f_lineno
|
warnings.py | 192 lineno = caller.f_lineno
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 43 lineno = frame.f_lineno 214 lineno = frame.f_lineno
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 43 lineno = frame.f_lineno 214 lineno = frame.f_lineno
|