HomeSort by relevance Sort by last modified time
    Searched refs:f_lineno (Results 1 - 25 of 27) sorted by null

1 2

  /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
  /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()
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
trace.py 617 lineno = frame.f_lineno
632 lineno = frame.f_lineno
644 lineno = frame.f_lineno
warnings.py 192 lineno = caller.f_lineno
inspect.py 203 f_lineno current line number in Python source code
    [all...]
  /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()
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
trace.py 617 lineno = frame.f_lineno
632 lineno = frame.f_lineno
644 lineno = frame.f_lineno
warnings.py 192 lineno = caller.f_lineno
inspect.py 203 f_lineno current line number in Python source code
    [all...]
  /external/lldb/examples/python/
pytracer.py 127 return self.f.f_lineno if self.f != None else 0
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]

Completed in 485 milliseconds

1 2