OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:emptyfrozenset
(Results
1 - 4
of
4
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
setobject.c
1042
static PyObject *
emptyfrozenset
= NULL;
variable
1070
if (
emptyfrozenset
== NULL)
1071
emptyfrozenset
= make_new_set(type, NULL);
1072
Py_XINCREF(
emptyfrozenset
);
1073
return
emptyfrozenset
;
1087
Py_CLEAR(
emptyfrozenset
);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
setobject.c
1043
static PyObject *
emptyfrozenset
= NULL;
variable
1071
if (
emptyfrozenset
== NULL)
1072
emptyfrozenset
= make_new_set(type, NULL);
1073
Py_XINCREF(
emptyfrozenset
);
1074
return
emptyfrozenset
;
1088
Py_CLEAR(
emptyfrozenset
);
[
all
...]
/external/python/cpython2/Objects/
setobject.c
1039
static PyObject *
emptyfrozenset
= NULL;
variable
1067
if (
emptyfrozenset
== NULL)
1068
emptyfrozenset
= make_new_set(type, NULL);
1069
Py_XINCREF(
emptyfrozenset
);
1070
return
emptyfrozenset
;
1084
Py_CLEAR(
emptyfrozenset
);
[
all
...]
/external/python/cpython3/Objects/
setobject.c
1083
static PyObject *
emptyfrozenset
= NULL;
variable
1112
if (
emptyfrozenset
== NULL)
1113
emptyfrozenset
= make_new_set(type, NULL)
[
all
...]
Completed in 76 milliseconds