HomeSort by relevance Sort by last modified time
    Searched refs:co_firstlineno (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/libchrome/third_party/jinja2/
debug.py 275 location, code.co_firstlineno,
282 location, code.co_firstlineno,
  /external/libchrome/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...]
  /external/python/cpython3/Lib/test/
test_code.py 147 self.assertEqual(co.co_firstlineno, 15)
162 c.co_varnames, c.co_filename, c.co_name, c.co_firstlineno,
test_traceback.py 294 lineno = prn.__code__.co_firstlineno
321 lineno_f = f.__code__.co_firstlineno
368 lineno_g = g.__code__.co_firstlineno
404 lineno_h = h.__code__.co_firstlineno
495 lineno = fmt.__code__.co_firstlineno
    [all...]
test_frame.py 180 offset = outer.__code__.co_firstlineno
test_sys_settrace.py 324 self.compare_events(func.__code__.co_firstlineno,
334 self.compare_events(func.__code__.co_firstlineno,
387 self.compare_events(generator_example.__code__.co_firstlineno,
534 frame.f_lineno == f.__code__.co_firstlineno + 2):
585 self.firstLine = None if decorated else self.code.co_firstlineno
591 # frame.f_code.co_firstlineno is the first line of the decorator when
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
frameobject.c 137 if (new_lineno < f->f_code->co_firstlineno) {
143 else if (new_lineno == f->f_code->co_firstlineno) {
145 new_lineno = f->f_code->co_firstlineno;
155 line = f->f_code->co_firstlineno;
741 f->f_lineno = code->co_firstlineno;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
frameobject.c 137 if (new_lineno < f->f_code->co_firstlineno) {
143 else if (new_lineno == f->f_code->co_firstlineno) {
145 new_lineno = f->f_code->co_firstlineno;
155 line = f->f_code->co_firstlineno;
739 f->f_lineno = code->co_firstlineno;
    [all...]
  /external/python/cpython2/Lib/test/
test_sys_settrace.py 285 self.compare_events(func.func_code.co_firstlineno,
295 self.compare_events(func.func_code.co_firstlineno,
348 self.compare_events(generator_example.__code__.co_firstlineno,
463 frame.f_lineno == f.func_code.co_firstlineno + 2):
491 self.firstLine = None if decorated else self.code.co_firstlineno
497 # frame.f_code.co_firstlineno is the first line of the decorator when
test_new.py 121 firstlineno = c.co_firstlineno
  /external/python/cpython2/Objects/
frameobject.c 159 if (new_lineno < f->f_code->co_firstlineno) {
165 else if (new_lineno == f->f_code->co_firstlineno) {
167 new_lineno = f->f_code->co_firstlineno;
177 line = f->f_code->co_firstlineno;
775 f->f_lineno = code->co_firstlineno;
    [all...]
  /external/python/cpython3/Objects/
frameobject.c 147 if (new_lineno < f->f_code->co_firstlineno) {
153 else if (new_lineno == f->f_code->co_firstlineno) {
155 new_lineno = f->f_code->co_firstlineno;
165 line = f->f_code->co_firstlineno;
772 f->f_lineno = code->co_firstlineno;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dis.py 188 lineno = code.co_firstlineno
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cProfile.py 159 return (code.co_filename, code.co_firstlineno, code.co_name)
dis.py 188 lineno = code.co_firstlineno
profile.py 298 fn = (fcode.co_filename, fcode.co_firstlineno, fcode.co_name)
383 self.co_firstlineno = 0
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_new.py 121 firstlineno = c.co_firstlineno
  /external/python/cpython2/Lib/
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
  /external/python/cpython3/Lib/asyncio/
coroutines.py 262 lineno = coro_code.co_firstlineno
  /external/python/cpython3/Lib/
cProfile.py 119 return (code.co_filename, code.co_firstlineno, code.co_name)
profile.py 268 fn = (fcode.co_filename, fcode.co_firstlineno, fcode.co_name)
353 self.co_firstlineno = 0
  /external/ply/ply/ply/
lex.py 362 func.__code__.co_filename, func.__code__.co_firstlineno,
695 line = t.__code__.co_firstlineno
721 f.sort(key=lambda x: x[1].__code__.co_firstlineno)
733 line = f.__code__.co_firstlineno
802 line = f.__code__.co_firstlineno
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
lex.py 362 func.__code__.co_filename, func.__code__.co_firstlineno,
695 line = t.__code__.co_firstlineno
721 f.sort(key=lambda x: x[1].__code__.co_firstlineno)
733 line = f.__code__.co_firstlineno
802 line = f.__code__.co_firstlineno
    [all...]

Completed in 901 milliseconds

12 3 4