HomeSort by relevance Sort by last modified time
    Searched refs:PyFunctionObject (Results 1 - 16 of 16) sorted by null

  /external/python/cpython3/Include/
funcobject.h 41 } PyFunctionObject;
78 (((PyFunctionObject *)func) -> func_code)
80 (((PyFunctionObject *)func) -> func_globals)
82 (((PyFunctionObject *)func) -> func_module)
84 (((PyFunctionObject *)func) -> func_defaults)
86 (((PyFunctionObject *)func) -> func_kwdefaults)
88 (((PyFunctionObject *)func) -> func_closure)
90 (((PyFunctionObject *)func) -> func_annotations)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /external/python/cpython2/Include/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /prebuilts/gdb/darwin-x86/include/python2.7/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /prebuilts/gdb/linux-x86/include/python2.7/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
funcobject.h 38 } PyFunctionObject;
56 (((PyFunctionObject *)func) -> func_code)
58 (((PyFunctionObject *)func) -> func_globals)
60 (((PyFunctionObject *)func) -> func_module)
62 (((PyFunctionObject *)func) -> func_defaults)
64 (((PyFunctionObject *)func) -> func_closure)
  /external/python/cpython3/Objects/
funcobject.c 11 PyFunctionObject *op;
21 op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type);
81 return ((PyFunctionObject *) op) -> func_code;
91 return ((PyFunctionObject *) op) -> func_globals;
101 return ((PyFunctionObject *) op) -> func_module;
111 return ((PyFunctionObject *) op) -> func_defaults;
130 Py_XSETREF(((PyFunctionObject *)op)->func_defaults, defaults);
141 return ((PyFunctionObject *) op) -> func_kwdefaults;
161 Py_XSETREF(((PyFunctionObject *)op)->func_kwdefaults, defaults);
172 return ((PyFunctionObject *) op) -> func_closure
    [all...]