/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_dis.py | 21 """%(_f.func_code.co_firstlineno + 1, 22 _f.func_code.co_firstlineno + 2) 45 """%(bug708901.func_code.co_firstlineno + 1, 46 bug708901.func_code.co_firstlineno + 2, 47 bug708901.func_code.co_firstlineno + 3) 75 """%(bug1333982.func_code.co_firstlineno + 1, 76 bug1333982.func_code.co_firstlineno + 2, 77 bug1333982.func_code.co_firstlineno + 3)
|
test_new.py | 91 new.function(f.func_code, {}, "blah") 92 g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure) 94 g3 = new.function(g.func_code, {}, "blah", None, g.func_closure) 97 self.assertRaises(exc, new.function, func.func_code, {}, "", None, closure) 110 c = f.func_code
|
test_funcattrs.py | 60 test.func_code = self.b.func_code 117 self.assertEqual(type(func.func_code), types.CodeType) 120 d.func_code = c.func_code 121 self.assertEqual(c.func_code, d.func_code) 125 b.func_code = c.func_code 129 self.fail("func_code with different numbers of free vars should [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_dis.py | 21 """%(_f.func_code.co_firstlineno + 1, 22 _f.func_code.co_firstlineno + 2) 45 """%(bug708901.func_code.co_firstlineno + 1, 46 bug708901.func_code.co_firstlineno + 2, 47 bug708901.func_code.co_firstlineno + 3) 75 """%(bug1333982.func_code.co_firstlineno + 1, 76 bug1333982.func_code.co_firstlineno + 2, 77 bug1333982.func_code.co_firstlineno + 3)
|
test_new.py | 91 new.function(f.func_code, {}, "blah") 92 g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure) 94 g3 = new.function(g.func_code, {}, "blah", None, g.func_closure) 97 self.assertRaises(exc, new.function, func.func_code, {}, "", None, closure) 110 c = f.func_code
|
test_funcattrs.py | 60 test.func_code = self.b.func_code 117 self.assertEqual(type(func.func_code), types.CodeType) 120 d.func_code = c.func_code 121 self.assertEqual(c.func_code, d.func_code) 125 b.func_code = c.func_code 129 self.fail("func_code with different numbers of free vars should [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_dis.py | 21 """%(_f.func_code.co_firstlineno + 1, 22 _f.func_code.co_firstlineno + 2) 45 """%(bug708901.func_code.co_firstlineno + 1, 46 bug708901.func_code.co_firstlineno + 2, 47 bug708901.func_code.co_firstlineno + 3) 75 """%(bug1333982.func_code.co_firstlineno + 1, 76 bug1333982.func_code.co_firstlineno + 2, 77 bug1333982.func_code.co_firstlineno + 3)
|
test_new.py | 91 new.function(f.func_code, {}, "blah") 92 g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure) 94 g3 = new.function(g.func_code, {}, "blah", None, g.func_closure) 97 self.assertRaises(exc, new.function, func.func_code, {}, "", None, closure) 110 c = f.func_code
|
test_funcattrs.py | 60 test.func_code = self.b.func_code 117 self.assertEqual(type(func.func_code), types.CodeType) 120 d.func_code = c.func_code 121 self.assertEqual(c.func_code, d.func_code) 125 b.func_code = c.func_code 129 self.fail("func_code with different numbers of free vars should [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_dis.py | 21 """%(_f.func_code.co_firstlineno + 1, 22 _f.func_code.co_firstlineno + 2) 45 """%(bug708901.func_code.co_firstlineno + 1, 46 bug708901.func_code.co_firstlineno + 2, 47 bug708901.func_code.co_firstlineno + 3) 75 """%(bug1333982.func_code.co_firstlineno + 1, 76 bug1333982.func_code.co_firstlineno + 2, 77 bug1333982.func_code.co_firstlineno + 3)
|
test_new.py | 91 new.function(f.func_code, {}, "blah") 92 g2 = new.function(g.func_code, {}, "blah", (2,), g.func_closure) 94 g3 = new.function(g.func_code, {}, "blah", None, g.func_closure) 97 self.assertRaises(exc, new.function, func.func_code, {}, "", None, closure) 110 c = f.func_code
|
test_funcattrs.py | 60 test.func_code = self.b.func_code 117 self.assertEqual(type(func.func_code), types.CodeType) 120 d.func_code = c.func_code 121 self.assertEqual(c.func_code, d.func_code) 125 b.func_code = c.func_code 129 self.fail("func_code with different numbers of free vars should [all...] |
/prebuilts/gdb/darwin-x86/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:__anon44676 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/gdb/darwin-x86/lib/python2.7/ |
types.py | 45 CodeType = type(_f.func_code) 81 GetSetDescriptorType = type(FunctionType.func_code)
|
/prebuilts/gdb/linux-x86/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:__anon44798 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/gdb/linux-x86/lib/python2.7/ |
types.py | 45 CodeType = type(_f.func_code) 81 GetSetDescriptorType = type(FunctionType.func_code)
|
/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:__anon72914 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/darwin-x86/2.7.5/lib/python2.7/ |
types.py | 45 CodeType = type(_f.func_code) 81 GetSetDescriptorType = type(FunctionType.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:__anon73037 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/lib/python2.7/ |
types.py | 45 CodeType = type(_f.func_code) 81 GetSetDescriptorType = type(FunctionType.func_code)
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
task_runner.py | 64 code_string = marshal.dumps(task_function.func_code)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
CallTips.py | 155 argcount = fob.func_code.co_argcount 156 real_args = fob.func_code.co_varnames[arg_offset:argcount] 161 if fob.func_code.co_flags & 0x4: 163 if fob.func_code.co_flags & 0x8:
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
CallTips.py | 155 argcount = fob.func_code.co_argcount 156 real_args = fob.func_code.co_varnames[arg_offset:argcount] 161 if fob.func_code.co_flags & 0x4: 163 if fob.func_code.co_flags & 0x8:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
CallTips.py | 155 argcount = fob.func_code.co_argcount 156 real_args = fob.func_code.co_varnames[arg_offset:argcount] 161 if fob.func_code.co_flags & 0x4: 163 if fob.func_code.co_flags & 0x8:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
CallTips.py | 155 argcount = fob.func_code.co_argcount 156 real_args = fob.func_code.co_varnames[arg_offset:argcount] 161 if fob.func_code.co_flags & 0x4: 163 if fob.func_code.co_flags & 0x8:
|