Home
last modified time | relevance | path

Searched refs:PyDict_DelItem (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Modules/
Dthreadmodule.c412 PyDict_DelItem(tstate->dict, self->key); in local_clear()
457 PyDict_DelItem(tdict, self->key); in _ldict()
589 PyDict_DelItem(self->dummies, dummyweakref); in _localdummy_destroyed()
Dposixmodule.c5029 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5034 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5039 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5153 PyDict_DelItem(_PyPopenProcs, fileObj); in _PyPclose()
5770 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5774 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5778 PyDict_DelItem(_PyPopenProcs, in _PyPopen()
5902 PyDict_DelItem(_PyPopenProcs, fileObj); in _PyPclose()
7251 if (PyDict_DelItem(posix_putenv_garbage, in posix_unsetenv()
D_json.c2091 if (PyDict_DelItem(s->markers, ident)) { in encoder_listencode_obj()
2227 if (PyDict_DelItem(s->markers, ident)) in encoder_listencode_dict()
2317 if (PyDict_DelItem(s->markers, ident)) in encoder_listencode_list()
D_csv.c1430 if (PyDict_DelItem(dialects, name_obj) < 0) in csv_unregister_dialect()
Dselectmodule.c485 if (PyDict_DelItem(self->dict, key) == -1) { in poll_unregister()
DcPickle.c985 if (PyDict_DelItem(self->fast_memo, key) < 0) { in fast_save_leave()
/external/python/cpython2/Include/
Ddictobject.h113 PyAPI_FUNC(int) PyDict_DelItem(PyObject *mp, PyObject *key);
/external/python/cpython2/Modules/_sqlite/
Dcache.c170 if (PyDict_DelItem(self->mapping, self->last->key) != 0) { in pysqlite_cache_get()
Dconnection.c1513 if (PyDict_DelItem(self->collations, uppercase_name) == -1) in pysqlite_connection_create_collation()
1523 PyDict_DelItem(self->collations, uppercase_name); in pysqlite_connection_create_collation()
/external/protobuf/python/google/protobuf/pyext/
Dextension_dict.cc204 if (PyDict_DelItem(self->values, extension) < 0) { in ClearExtension()
Dmessage.cc1681 PyDict_DelItem(self->composite_fields, arg); in CheckAndGetInteger()
/external/python/cpython2/PC/os2vacpp/
Dpython.def121 PyDict_DelItem
/external/python/cpython2/Python/
Dsymtable.c391 if (PyDict_DelItem(bound, name) < 0) in analyze_name()
401 if (PyDict_DelItem(global, name) < 0) in analyze_name()
471 if (PyDict_DelItem(free, name) < 0) in analyze_cells()
Dceval.c2284 if ((err = PyDict_DelItem(f->f_globals, w)) != 0) in PyEval_EvalFrameEx()
5159 if (PyDict_DelItem(locals, name) != 0) { in string_concatenate()
/external/python/cpython2/Doc/c-api/
Ddict.rst96 .. c:function:: int PyDict_DelItem(PyObject *p, PyObject *key)
/external/python/cpython2/Doc/data/
Drefcounts.dat207 PyDict_DelItem:int:::
208 PyDict_DelItem:PyObject*:p:0:
209 PyDict_DelItem:PyObject*:key:0:
/external/python/cpython2/Objects/
Ddictobject.c852 PyDict_DelItem(PyObject *op, PyObject *key) in PyDict_DelItem() function
1239 return PyDict_DelItem((PyObject *)mp, v); in dict_ass_sub()
2482 err = PyDict_DelItem(v, kv); in PyDict_DelItemString()
Dclassobject.c377 int rv = PyDict_DelItem(op->cl_dict, name); in class_setattr()
814 int rv = PyDict_DelItem(inst->in_dict, name); in instance_setattr1()
Dobject.c1527 res = PyDict_DelItem(dict, name); in _PyObject_GenericSetAttrWithDict()
Dstringobject.c586 if (PyDict_DelItem(interned, op) != 0) in string_dealloc()
/external/python/cpython2/PC/os2emx/
Dpython27.def270 "PyDict_DelItem"
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c195 if (-1 == PyDict_DelItem(self->dict, self->key)) in _DictRemover_call()