OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
funcobject.c
12
PyFunctionObject
*op = PyObject_GC_New(
PyFunctionObject
,
70
return ((
PyFunctionObject
*) op) -> func_code;
80
return ((
PyFunctionObject
*) op) -> func_globals;
90
return ((
PyFunctionObject
*) op) -> func_module;
100
return ((
PyFunctionObject
*) op) -> func_defaults;
119
Py_XDECREF(((
PyFunctionObject
*) op) -> func_defaults);
120
((
PyFunctionObject
*) op) -> func_defaults = defaults;
131
return ((
PyFunctionObject
*) op) -> func_closure;
152
Py_XDECREF(((
PyFunctionObject
*) op) -> func_closure);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
funcobject.c
12
PyFunctionObject
*op = PyObject_GC_New(
PyFunctionObject
,
70
return ((
PyFunctionObject
*) op) -> func_code;
80
return ((
PyFunctionObject
*) op) -> func_globals;
90
return ((
PyFunctionObject
*) op) -> func_module;
100
return ((
PyFunctionObject
*) op) -> func_defaults;
119
Py_XDECREF(((
PyFunctionObject
*) op) -> func_defaults);
120
((
PyFunctionObject
*) op) -> func_defaults = defaults;
131
return ((
PyFunctionObject
*) op) -> func_closure;
152
Py_XDECREF(((
PyFunctionObject
*) op) -> func_closure);
[
all
...]
/external/python/cpython2/Objects/
funcobject.c
12
PyFunctionObject
*op = PyObject_GC_New(
PyFunctionObject
,
70
return ((
PyFunctionObject
*) op) -> func_code;
80
return ((
PyFunctionObject
*) op) -> func_globals;
90
return ((
PyFunctionObject
*) op) -> func_module;
100
return ((
PyFunctionObject
*) op) -> func_defaults;
119
Py_XSETREF(((
PyFunctionObject
*)op)->func_defaults, defaults);
130
return ((
PyFunctionObject
*) op) -> func_closure;
151
Py_XSETREF(((
PyFunctionObject
*)op)->func_closure, closure);
157
#define OFF(x) offsetof(
PyFunctionObject
, x
[
all
...]
/external/python/cpython3/Python/
ceval.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c
[
all
...]
/external/python/cpython2/Python/
ceval.c
[
all
...]
Completed in 1098 milliseconds