Searched refs:PyDict_GetItem (Results 1 - 11 of 11) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | odictobject.h | 30 #define PyODict_GetItem(od, key) PyDict_GetItem(_PyObject_CAST(od), key)
|
/third_party/python/Include/ |
H A D | dictobject.h | 22 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
|
/third_party/python/PC/ |
H A D | python3dll.c | 175 EXPORT_FUNC(PyDict_GetItem)
|
/third_party/python/Modules/ |
H A D | getpath.c | 940 PyObject *o = PyDict_GetItem(configDict, k); in _PyConfig_InitPathConfig()
|
H A D | _hashopenssl.c | 387 name_obj = PyDict_GetItem(state->constructs, digestmod); in py_digest_by_digestmod()
|
/third_party/python/Python/ |
H A D | pylifecycle.c | 782 PyObject *isinstance = PyDict_GetItem(builtins_dict, &_Py_ID(isinstance)); in pycore_init_builtins() 785 PyObject *len = PyDict_GetItem(builtins_dict, &_Py_ID(len)); in pycore_init_builtins()
|
H A D | compile.c | 7946 if (PyDict_GetItem(c->u->u_cellvars, k) != NULL) { in compute_localsplus_info() 7957 if (PyDict_GetItem(c->u->u_varnames, k) != NULL) { in compute_localsplus_info() 8147 PyObject *varindex = PyDict_GetItem(c->u->u_varnames, varname); in build_cellfixedoffsets()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | descriptor_containers.cc | 406 PyObject* value2 = PyDict_GetItem(other, key.get()); in DescriptorMapping_Equal()
|
H A D | message.cc | 222 PyObject* descriptor_or_name = PyDict_GetItem(dict, kDESCRIPTOR); in New()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_python_wrap.c | 2292 obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; in SWIG_Python_GetSwigThis() 2802 PyObject *obj = PyDict_GetItem(cache, key); in SWIG_Python_TypeQuery()
|
/third_party/python/Objects/ |
H A D | dictobject.c | 1638 /* Note that, for historical reasons, PyDict_GetItem() suppresses all errors 1649 PyDict_GetItem(PyObject *op, PyObject *key) in PyDict_GetItem() function 1667 // bpo-40839: Before Python 3.10, it was possible to call PyDict_GetItem() in PyDict_GetItem() 1765 /* Variant of PyDict_GetItem() that doesn't suppress exceptions. 2838 /* Since the target dict is empty, PyDict_GetItem() in dict_merge() 3896 rv = PyDict_GetItem(v, kv); in PyDict_GetItemString()
|
Completed in 40 milliseconds