Searched refs:PySet_Contains (Results 1 – 14 of 14) sorted by relevance
| /third_party/python/Include/ |
| D | setobject.h | 85 PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key);
|
| /third_party/python/Objects/ |
| D | setobject.c | 2271 PySet_Contains(PyObject *anyset, PyObject *key) in PySet_Contains() function 2390 assertRaises(PySet_Contains(ob, dup) == -1, PyExc_TypeError); in test_c_api() 2395 assert(PySet_Contains(ob, elem) == 0); in test_c_api() 2398 assert(PySet_Contains(ob, elem) == 1); in test_c_api() 2441 assertRaises(PySet_Contains(t, elem) == -1, PyExc_SystemError); in test_c_api()
|
| /third_party/python/Python/ |
| D | symtable.c | 532 if (!PySet_Contains(bound, name)) { in analyze_name() 556 if (bound && PySet_Contains(bound, name)) { in analyze_name() 564 if (global && PySet_Contains(global, name)) { in analyze_name() 600 if (!PySet_Contains(free, name)) in analyze_cells() 703 if (bound && !PySet_Contains(bound, name)) { in update_symbols()
|
| D | pythonrun.c | 1068 res = PySet_Contains(seen, check_id); in print_exception_recursive() 1086 res = PySet_Contains(seen, check_id); in print_exception_recursive()
|
| D | ceval.c | 934 if (PySet_Contains(seen, key) || PySet_Add(seen, key)) { in match_keys() 982 if (PySet_Contains(seen, name) || PySet_Add(seen, name)) { in match_class_attr()
|
| D | compile.c | 6031 int in_seen = PySet_Contains(seen, key->v.Constant.value); in compiler_pattern_mapping()
|
| /third_party/python/Doc/c-api/ |
| D | set.rst | 122 .. c:function:: int PySet_Contains(PyObject *anyset, PyObject *key)
|
| /third_party/python/Modules/ |
| D | _abc.c | 147 int res = PySet_Contains(set, ref); in _in_weak_set()
|
| D | _asynciomodule.c | 181 int has_it = PySet_Contains( in is_coroutine()
|
| /third_party/python/Doc/data/ |
| D | stable_abi.dat | 551 function,PySet_Contains,3.2,
|
| D | refcounts.dat | 2024 PySet_Contains:int::: 2025 PySet_Contains:PyObject*:anyset:0: 2026 PySet_Contains:PyObject*:key:0:
|
| /third_party/python/PC/ |
| D | python3dll.c | 513 EXPORT_FUNC(PySet_Contains)
|
| /third_party/python/Misc/ |
| D | stable_abi.txt | 1183 function PySet_Contains
|
| /third_party/python/Doc/whatsnew/ |
| D | 2.5.rst | 2161 :c:func:`PySet_Discard` to add and remove elements, and :c:func:`PySet_Contains`
|