/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 86 self.assertEqual(func.func_code.co_firstlineno, 3)
|
test_scope.py | 571 self.assertRaises(TypeError, eval, g.func_code) 574 exec g.func_code in {}
|
test_sys_setprofile.py | 344 code = function.func_code
|
test_sys.py | 298 SysModuleTest.test_getframe.im_func.func_code \ 557 check(get_cell().func_code, size('4i8Pi3P'))
|
test_marshal.py | 149 co = ExceptionTestCase.test_exceptions.func_code
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 86 self.assertEqual(func.func_code.co_firstlineno, 3)
|
test_scope.py | 571 self.assertRaises(TypeError, eval, g.func_code) 574 exec g.func_code in {}
|
test_sys_setprofile.py | 344 code = function.func_code
|
test_sys.py | 298 SysModuleTest.test_getframe.im_func.func_code \ 557 check(get_cell().func_code, size('4i8Pi3P'))
|
test_marshal.py | 149 co = ExceptionTestCase.test_exceptions.func_code
|
/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')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dis.py | 29 if hasattr(x, 'func_code'): 30 x = x.func_code
|
inspect.py | 148 func_code code object containing compiled function bytecode 162 object.func_code.co_flags & CO_GENERATOR) 412 object = object.func_code 569 object = object.func_code 816 args, varargs, varkw = getargs(func.func_code) [all...] |
pdb.py | 395 code = func.func_code 841 try: code = value.func_code 847 try: code = value.im_func.func_code [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dis.py | 29 if hasattr(x, 'func_code'): 30 x = x.func_code
|
inspect.py | 148 func_code code object containing compiled function bytecode 162 object.func_code.co_flags & CO_GENERATOR) 412 object = object.func_code 569 object = object.func_code 816 args, varargs, varkw = getargs(func.func_code) [all...] |
pdb.py | 395 code = func.func_code 841 try: code = value.func_code 847 try: code = value.im_func.func_code [all...] |
/external/chromium_org/third_party/ply/ |
yacc.py | 91 def func_code(f): function 92 return f.func_code 94 def func_code(f): function [all...] |
/external/chromium_org/tools/code_coverage/ |
croc_html.py | 409 src_dir = os.path.split(self.WriteRoot.func_code.co_filename)[0]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/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...] |