/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...] |
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
CythonFunction.c | 30 PyObject *func_code; member in struct:__anon16375 236 PyObject* result = (op->func_code) ? op->func_code : Py_None; 389 {(char *) "func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, 448 op->func_code = code; 470 Py_CLEAR(m->func_code); 508 Py_VISIT(m->func_code); 823 ((__pyx_CyFunctionObject *) func)->func_code); [all...] |
/development/tools/axl/ |
singletonmixin.py | 86 return cls.__init__.im_func.func_code.co_argcount - 1
|
/external/chromium_org/third_party/jinja2/ |
sandbox.py | 26 UNSAFE_FUNCTION_ATTRIBUTES = set(['func_closure', 'func_code', 'func_dict', 122 example this function returns `True` for the `func_code` attribute of 127 >>> is_internal_attribute(lambda: None, "func_code") 129 >>> is_internal_attribute((lambda x:x).func_code, 'co_code')
|
/external/chromium_org/tools/code_coverage/ |
croc_html.py | 409 src_dir = os.path.split(self.WriteRoot.func_code.co_filename)[0]
|
/external/lldb/test/pexpect-2.4/examples/ |
rippy.py | 378 argcount = func.func_code.co_argcount 379 required_args = dict([(k,args.get(k)) for k in func.func_code.co_varnames[:argcount]]) [all...] |
/external/chromium_org/third_party/lcov/bin/ |
genhtml | [all...] |
/external/chromium_org/third_party/pymock/ |
mock.py | [all...] |