Searched defs:func_code (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Include/
H A Dfuncobject.h13 * They reference a code object in their func_code attribute, which is a
23 PyObject *func_code; /* A code object */ member in struct:__anon19248
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/python/cpython3/Include/
H A Dfuncobject.h23 PyObject *func_code; /* A code object, the __code__ attribute */ member in struct:__anon19810
37 * func_closure contains the bindings for func_code->co_freevars, so
38 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code)
39 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0).
78 (((PyFunctionObject *)func) -> func_code)
/external/libmojo/third_party/ply/
H A Dlex.py51 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(
[all...]
H A Dyacc.py91 def func_code(f): function
92 return f.func_code
94 def func_code(f): function
2880 eline = func_code(self.error_func).co_firstlineno
2881 efile = func_code(self.error_func).co_filename
2884 if (func_code(self.error_func).co_argcount != 1+ismethod):
2964 line = func_code(item).co_firstlineno
2965 file = func_code(item).co_filename
2988 if func_code(func).co_argcount > reqargs:
2991 elif func_code(fun
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.c650 void *func_code = LLVMGetPointerToGlobal(gallivm->engine, llvm_func); local
651 lp_disassemble(llvm_func, func_code);
663 void *func_code = LLVMGetPointerToGlobal(gallivm->engine, llvm_func); local
664 lp_profile(llvm_func, func_code);
/external/python/cpython2/Lib/test/
H A Dtest_sys_settrace.py272 self.compare_events(func.func_code.co_firstlineno,
282 self.compare_events(func.func_code.co_firstlineno,
450 frame.f_lineno == f.func_code.co_firstlineno + 2):
481 if not self.done and frame.f_code == self.function.func_code:
802 func_code = code variable in class:.test_jump_to_firstlineno.fake_function

Completed in 299 milliseconds