/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 57 self.__code__ = None 304 m.__code__ = co 430 if mm.__code__ is None:
|
/external/selinux/python/sepolgen/src/sepolgen/ |
lex.py | 307 func.__code__.co_filename, func.__code__.co_firstlineno, 644 f.sort(key=lambda x: x[1].__code__.co_firstlineno) 658 line = f.__code__.co_firstlineno 659 file = f.__code__.co_filename 666 nargs = f.__code__.co_argcount [all...] |
yacc.py | 466 if 1 and isinstance(v,types.FunctionType) and v.__code__.co_argcount == 1: 470 sys.stderr.write("%s:%d: Warning. Possible grammar rule '%s' defined without p_ prefix.\n" % (v.__code__.co_filename, v.__code__.co_firstlineno,n)) 731 line = f.__code__.co_firstlineno 732 file = f.__code__.co_filename 740 if f.__code__.co_argcount > reqdargs: 744 if f.__code__.co_argcount < reqdargs: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
lex.py | 307 func.__code__.co_filename, func.__code__.co_firstlineno, 644 f.sort(key=lambda x: x[1].__code__.co_firstlineno) 658 line = f.__code__.co_firstlineno 659 file = f.__code__.co_filename 666 nargs = f.__code__.co_argcount [all...] |
yacc.py | 466 if 1 and isinstance(v,types.FunctionType) and v.__code__.co_argcount == 1: 470 sys.stderr.write("%s:%d: Warning. Possible grammar rule '%s' defined without p_ prefix.\n" % (v.__code__.co_filename, v.__code__.co_firstlineno,n)) 731 line = f.__code__.co_firstlineno 732 file = f.__code__.co_filename 740 if f.__code__.co_argcount > reqdargs: 744 if f.__code__.co_argcount < reqdargs: [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
test_gdb.py | 537 print foo.__code__''',
|
test_sys_settrace.py | 335 self.compare_events(generator_example.__code__.co_firstlineno,
|
/external/python/cpython2/Lib/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
test_sys_settrace.py | 335 self.compare_events(generator_example.__code__.co_firstlineno,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_trace.py | 27 return func.__code__.co_firstlineno
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
funcobject.c | 247 "__code__ must be set to a code object");
334 {"__code__", (getter)func_get_code, (setter)func_set_code},
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
funcobject.c | 247 "__code__ must be set to a code object");
334 {"__code__", (getter)func_get_code, (setter)func_set_code},
|
/external/python/cpython2/Objects/ |
funcobject.c | 245 "__code__ must be set to a code object"); 332 {"__code__", (getter)func_get_code, (setter)func_set_code},
|
/external/libmojo/third_party/jinja2/ |
utils.py | 81 internal_code.add(f.__code__)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/ |
py3_test_grammar.py | 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',))
169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
py3_test_grammar.py | 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',)) 169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',)) 169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',)) 169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))
|
/external/ply/ply/ply/ |
yacc.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/ |
freeze.py | 392 if dict[mod].__code__:
|
/external/python/cpython2/Tools/freeze/ |
freeze.py | 392 if dict[mod].__code__:
|