HomeSort by relevance Sort by last modified time
    Searched refs:func_code (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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)
74 """%(bug1333982.func_code.co_firstlineno + 1,
75 bug1333982.func_code.co_firstlineno + 2,
76 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
  /external/python/cpython2/Lib/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
  /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
  /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
  /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)
  /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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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:__anon4332
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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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:__anon4639
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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /external/python/cpython2/Include/
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:__anon32580
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/cpython2/Lib/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /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:__anon66471
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:__anon66593
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:__anon986
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:__anon1109
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/python/cpython3/Include/
funcobject.h 23 PyObject *func_code; /* A code object, the __code__ attribute */ member in struct:__anon33142
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)

Completed in 319 milliseconds

1 2 3 4 5 6 7