Home
last modified time | relevance | path

Searched refs:PyMappingMethods (Results 1 – 25 of 35) sorted by relevance

12

/third_party/python/Objects/
Dtypeslots.inc4 {offsetof(PyMappingMethods, mp_ass_subscript), offsetof(PyTypeObject, tp_as_mapping)},
5 {offsetof(PyMappingMethods, mp_length), offsetof(PyTypeObject, tp_as_mapping)},
6 {offsetof(PyMappingMethods, mp_subscript), offsetof(PyTypeObject, tp_as_mapping)},
Dabstract.c156 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_GetItem()
208 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_SetItem()
242 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_DelItem()
1917 PyMappingMethods *mp = Py_TYPE(s)->tp_as_mapping; in PySequence_GetSlice()
2006 PyMappingMethods *mp = Py_TYPE(s)->tp_as_mapping; in PySequence_SetSlice()
2029 PyMappingMethods *mp = Py_TYPE(s)->tp_as_mapping; in PySequence_DelSlice()
2324 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyMapping_Size()
Dunionobject.c398 static PyMappingMethods union_as_mapping = {
Dgenericaliasobject.c375 static PyMappingMethods ga_as_mapping = {
Dweakrefobject.c734 static PyMappingMethods proxy_as_mapping = {
Dtupleobject.c891 static PyMappingMethods tuple_as_mapping = {
Drangeobject.c674 static PyMappingMethods range_as_mapping = {
Dodictobject.c846 static PyMappingMethods odict_as_mapping = {
Ddescrobject.c1024 static PyMappingMethods mappingproxy_as_mapping = {
Dbytearrayobject.c2204 static PyMappingMethods bytearray_as_mapping = {
Dmemoryobject.c2633 static PyMappingMethods memory_as_mapping = {
/third_party/python/Include/cpython/
Dobject.h169 } PyMappingMethods; typedef
210 PyMappingMethods *tp_as_mapping;
282 PyMappingMethods as_mapping;
/third_party/python/Doc/includes/
Dtypestruct.h20 PyMappingMethods *tp_as_mapping;
/third_party/protobuf/python/google/protobuf/pyext/
Dmap_container.cc567 static PyMappingMethods ScalarMapMappingMethods = {
835 static PyMappingMethods MessageMapMappingMethods = {
Dextension_dict.cc355 static PyMappingMethods MpMethods = {
Drepeated_composite_container.cc509 static PyMappingMethods MpMethods = { in Subscript()
Ddescriptor_containers.cc289 static PyMappingMethods MappingMappingMethods = {
739 static PyMappingMethods SeqMappingMethods = {
Drepeated_scalar_container.cc707 static PyMappingMethods MpMethods = { in Subscript()
/third_party/python/Doc/c-api/
Dtypeobj.rst68 …| :c:member:`~PyTypeObject.tp_as_mapping` | :c:type:`PyMappingMethods` * | :ref:`sub-s…
292 …| :c:member:`~PyMappingMethods.mp_length` | :c:type:`lenfunc` | __…
294 …| :c:member:`~PyMappingMethods.mp_subscript` | :c:type:`binaryfunc` | __…
296 …| :c:member:`~PyMappingMethods.mp_ass_subscript` | :c:type:`objobjargproc` | __…
855 .. c:member:: PyMappingMethods* PyTypeObject.tp_as_mapping
2198 .. c:type:: PyMappingMethods
2203 .. c:member:: lenfunc PyMappingMethods.mp_length
2209 .. c:member:: binaryfunc PyMappingMethods.mp_subscript
2217 .. c:member:: objobjargproc PyMappingMethods.mp_ass_subscript
2263 the subscription via the :c:member:`~PyMappingMethods.mp_subscript` slot.
[all …]
Dtype.rst238 :c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and
/third_party/python/Doc/extending/
Dnewtypes.rst452 PyMappingMethods *tp_as_mapping;
457 :c:type:`PyMappingMethods`, respectively. It is up to you to fill in this
/third_party/python/Python/
Dhamt.c2577 static PyMappingMethods PyHamtIterator_as_mapping = {
2887 static PyMappingMethods PyHamt_as_mapping = {
Dcontext.c699 static PyMappingMethods PyContext_as_mapping = {
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst187 :c:member:`~PyMappingMethods.mp_subscript` of :class:`range`. Patch by
/third_party/python/Modules/_ctypes/
D_ctypes.c4817 static PyMappingMethods Array_as_mapping = {
5400 static PyMappingMethods Pointer_as_mapping = {

12