/external/python/cpython3/Modules/ |
D | _abc.c | 175 *pset = PySet_New(NULL); in _add_to_weak_set() 287 PySet_New(impl->_abc_registry), in _abc__get_dump() 288 PySet_New(impl->_abc_cache), in _abc__get_dump() 289 PySet_New(impl->_abc_negative_cache), in _abc__get_dump()
|
D | signalmodule.c | 890 result = PySet_New(0); in sigset_to_set() 1042 PyObject *set = PySet_New(tup); in signal_valid_signals_impl()
|
D | _ssl.c | 5701 result = PySet_New(NULL); in _ssl_enum_certificates_impl() 5799 result = PySet_New(NULL); in _ssl_enum_crls_impl()
|
D | _asynciomodule.c | 3345 iscoroutine_typecache = PySet_New(NULL); in module_init()
|
/external/python/cpython2/Include/ |
D | setobject.h | 83 PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
|
/external/python/cpython3/Include/ |
D | setobject.h | 80 PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
|
/external/python/cpython3/Python/ |
D | symtable.c | 746 local = PySet_New(NULL); /* collect new names bound in block */ in analyze_block() 764 newglobal = PySet_New(NULL); in analyze_block() 767 newfree = PySet_New(NULL); in analyze_block() 770 newbound = PySet_New(NULL); in analyze_block() 837 allfree = PySet_New(NULL); in analyze_block() 899 temp_bound = PySet_New(bound); in analyze_child_block() 902 temp_free = PySet_New(free); in analyze_child_block() 905 temp_global = PySet_New(global); in analyze_child_block() 932 free = PySet_New(NULL); in symtable_analyze() 935 global = PySet_New(NULL); in symtable_analyze()
|
D | pythonrun.c | 1019 seen = PySet_New(NULL); in _PyErr_Display()
|
D | marshal.c | 1260 v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL); in r_object()
|
D | ceval.c | 2808 PyObject *set = PySet_New(NULL); in _PyEval_EvalFrameDefault()
|
/external/python/cpython3/Objects/ |
D | setobject.c | 2240 PySet_New(PyObject *iterable) in PySet_New() function 2391 assertRaises(PySet_New(Py_None) == NULL, PyExc_TypeError); in test_c_api() 2395 dup = PySet_New(ob); in test_c_api() 2413 dup2 = PySet_New(dup); in test_c_api() 2438 dup2 = PySet_New(NULL); in test_c_api() 2470 f = PySet_New(NULL); in test_c_api()
|
D | dictobject.c | 4283 return PySet_New(left); in dictviews_to_set() 4350 result = PySet_New(NULL); in _PyDictView_Intersect()
|
/external/python/cpython2/Objects/ |
D | setobject.c | 2273 PySet_New(PyObject *iterable) in PySet_New() function 2429 assertRaises(PySet_New(Py_None) == NULL, PyExc_TypeError); in test_c_api() 2433 dup = PySet_New(ob); in test_c_api() 2451 dup2 = PySet_New(dup); in test_c_api() 2476 dup2 = PySet_New(NULL); in test_c_api() 2508 f = PySet_New(NULL); in test_c_api()
|
D | dictobject.c | 3067 PyObject *result = PySet_New(self); in dictviews_sub() 3086 PyObject *result = PySet_New(self); in dictviews_and() 3104 PyObject *result = PySet_New(self); in dictviews_or() 3122 PyObject *result = PySet_New(self); in dictviews_xor()
|
/external/python/cpython3/Doc/c-api/ |
D | set.rst | 80 .. c:function:: PyObject* PySet_New(PyObject *iterable)
|
/external/python/cpython2/Doc/c-api/ |
D | set.rst | 86 .. c:function:: PyObject* PySet_New(PyObject *iterable)
|
/external/python/cpython3/PC/ |
D | python3.def | 532 PySet_New=python39.PySet_New
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 506 "PySet_New"
|
/external/python/pybind11/include/pybind11/ |
D | pytypes.h | 1355 PYBIND11_OBJECT_CVT(set, object, PySet_Check, PySet_New) in PYBIND11_OBJECT_CVT() argument 1356 set() : object(PySet_New(nullptr), stolen_t{}) { in PYBIND11_OBJECT_CVT()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1220 PySet_New:PyObject*::+1: 1221 PySet_New:PyObject*:iterable:0:
|
/external/python/cpython2/Python/ |
D | marshal.c | 970 v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL); in r_object()
|
D | ceval.c | 2493 x = PySet_New(NULL); in PyEval_EvalFrameEx()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2055 PySet_New:PyObject*::+1: 2056 PySet_New:PyObject*:iterable:0:
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 2927 PyObject *dummy_obj = PySet_New(NULL); in InitGlobals()
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 3809 retval = PySet_New(NULL); in parseKeyUsage()
|