Searched refs:PyMappingMethods (Results 1 – 25 of 35) sorted by relevance
12
/third_party/python/Objects/ |
D | typeslots.inc | 4 {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)},
|
D | abstract.c | 156 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()
|
D | unionobject.c | 398 static PyMappingMethods union_as_mapping = {
|
D | genericaliasobject.c | 375 static PyMappingMethods ga_as_mapping = {
|
D | weakrefobject.c | 734 static PyMappingMethods proxy_as_mapping = {
|
D | tupleobject.c | 891 static PyMappingMethods tuple_as_mapping = {
|
D | rangeobject.c | 674 static PyMappingMethods range_as_mapping = {
|
D | odictobject.c | 846 static PyMappingMethods odict_as_mapping = {
|
D | descrobject.c | 1024 static PyMappingMethods mappingproxy_as_mapping = {
|
D | bytearrayobject.c | 2204 static PyMappingMethods bytearray_as_mapping = {
|
D | memoryobject.c | 2633 static PyMappingMethods memory_as_mapping = {
|
/third_party/python/Include/cpython/ |
D | object.h | 169 } PyMappingMethods; typedef 210 PyMappingMethods *tp_as_mapping; 282 PyMappingMethods as_mapping;
|
/third_party/python/Doc/includes/ |
D | typestruct.h | 20 PyMappingMethods *tp_as_mapping;
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | map_container.cc | 567 static PyMappingMethods ScalarMapMappingMethods = { 835 static PyMappingMethods MessageMapMappingMethods = {
|
D | extension_dict.cc | 355 static PyMappingMethods MpMethods = {
|
D | repeated_composite_container.cc | 509 static PyMappingMethods MpMethods = { in Subscript()
|
D | descriptor_containers.cc | 289 static PyMappingMethods MappingMappingMethods = { 739 static PyMappingMethods SeqMappingMethods = {
|
D | repeated_scalar_container.cc | 707 static PyMappingMethods MpMethods = { in Subscript()
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 68 …| :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 …]
|
D | type.rst | 238 :c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 452 PyMappingMethods *tp_as_mapping; 457 :c:type:`PyMappingMethods`, respectively. It is up to you to fill in this
|
/third_party/python/Python/ |
D | hamt.c | 2577 static PyMappingMethods PyHamtIterator_as_mapping = { 2887 static PyMappingMethods PyHamt_as_mapping = {
|
D | context.c | 699 static PyMappingMethods PyContext_as_mapping = {
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a2.rst | 187 :c:member:`~PyMappingMethods.mp_subscript` of :class:`range`. Patch by
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 4817 static PyMappingMethods Array_as_mapping = { 5400 static PyMappingMethods Pointer_as_mapping = {
|
12