/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
funcobject.h | 13 * They reference a code object in their func_code attribute, which is a 23 PyObject *func_code; /* A code object */ member in struct:__anon60453 34 * func_closure contains the bindings for func_code->co_freevars, so 35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code) 36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0). 56 (((PyFunctionObject *)func) -> func_code)
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
funcobject.h | 13 * They reference a code object in their func_code attribute, which is a 23 PyObject *func_code; /* A code object */ member in struct:__anon60576 34 * func_closure contains the bindings for func_code->co_freevars, so 35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code) 36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0). 56 (((PyFunctionObject *)func) -> func_code)
|
/external/chromium_org/third_party/ply/ |
lex.py | 51 def func_code(f): function 52 return f.func_code 54 def func_code(f): function 360 func_code(func).co_filename, func_code(func).co_firstlineno, 682 line = func_code(t).co_firstlineno 683 file = func_code(t).co_filename 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 [all...] |
yacc.py | 91 def func_code(f): function 92 return f.func_code 94 def func_code(f): function [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sys_settrace.py | 272 self.compare_events(func.func_code.co_firstlineno, 282 self.compare_events(func.func_code.co_firstlineno, 441 frame.f_lineno == f.func_code.co_firstlineno + 2): 472 if not self.done and frame.f_code == self.function.func_code: 782 func_code = code variable in class:.test_jump_to_firstlineno.fake_function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sys_settrace.py | 272 self.compare_events(func.func_code.co_firstlineno, 282 self.compare_events(func.func_code.co_firstlineno, 441 frame.f_lineno == f.func_code.co_firstlineno + 2): 472 if not self.done and frame.f_code == self.function.func_code: 782 func_code = code variable in class:.test_jump_to_firstlineno.fake_function
|