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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 111 self.assertEqual(co.co_firstlineno, 15)
test_hotshot.py 92 f_lineno = f.func_code.co_firstlineno
93 g_lineno = g.func_code.co_firstlineno
test_sys_settrace.py 272 self.compare_events(func.func_code.co_firstlineno,
282 self.compare_events(func.func_code.co_firstlineno,
335 self.compare_events(generator_example.__code__.co_firstlineno,
441 frame.f_lineno == f.func_code.co_firstlineno + 2):
473 firstLine = frame.f_code.co_firstlineno
test_univnewlines2k.py 86 self.assertEqual(func.func_code.co_firstlineno, 3)
test_new.py 121 firstlineno = c.co_firstlineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 111 self.assertEqual(co.co_firstlineno, 15)
test_hotshot.py 92 f_lineno = f.func_code.co_firstlineno
93 g_lineno = g.func_code.co_firstlineno
test_sys_settrace.py 272 self.compare_events(func.func_code.co_firstlineno,
282 self.compare_events(func.func_code.co_firstlineno,
335 self.compare_events(generator_example.__code__.co_firstlineno,
441 frame.f_lineno == f.func_code.co_firstlineno + 2):
473 firstLine = frame.f_code.co_firstlineno
test_univnewlines2k.py 86 self.assertEqual(func.func_code.co_firstlineno, 3)
test_new.py 121 firstlineno = c.co_firstlineno
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
code.h 25 int co_firstlineno; /* first source line number */ member in struct:__anon63058
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
code.h 25 int co_firstlineno; /* first source line number */ member in struct:__anon63181
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stats.py 82 self.co_firstlineno = firstlineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stats.py 82 self.co_firstlineno = firstlineno
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
collector.py 91 first = frame.f_code.co_firstlineno
99 self.last_exc_firstlineno = frame.f_code.co_firstlineno
parser.py 341 for attr in ['co_lnotab', 'co_firstlineno', 'co_consts', 'co_code']:
381 line_num = self.code.co_firstlineno
466 chunk.exits.add(-self.code.co_firstlineno)
510 ex = -self.code.co_firstlineno
tracer.c 388 int first = frame->f_code->co_firstlineno;
449 self->last_exc_firstlineno = frame->f_code->co_firstlineno;
  /external/chromium_org/third_party/ply/
lex.py 360 func_code(func).co_filename, func_code(func).co_firstlineno,
682 line = func_code(t).co_firstlineno
709 f.sort(lambda x,y: cmp(func_code(x[1]).co_firstlineno,func_code(y[1]).co_firstlineno))
712 f.sort(key=lambda x: func_code(x[1]).co_firstlineno)
730 line = func_code(f).co_firstlineno
800 line = func_code(f).co_firstlineno
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 159 return (code.co_filename, code.co_firstlineno, code.co_name)
dis.py 188 lineno = code.co_firstlineno
profile.py 289 fn = (fcode.co_filename, fcode.co_firstlineno, fcode.co_name)
374 self.co_firstlineno = 0
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 159 return (code.co_filename, code.co_firstlineno, code.co_name)
dis.py 188 lineno = code.co_firstlineno

Completed in 629 milliseconds

1 2