Lines Matching refs:nameobj
955 #define GET_ATTR_STRING(name, nameobj) \ argument
957 if (PyUnicode_Check(nameobj)) \
958 name = (char *)_PyUnicode_AsString(nameobj)
1315 OutputGetattro(PyObject *self, PyObject *nameobj) in OutputGetattro() argument
1317 GET_ATTR_STRING(name, nameobj); in OutputGetattro()
1326 return PyObject_GenericGetAttr(self, nameobj); in OutputGetattro()
1330 OutputSetattro(PyObject *self, PyObject *nameobj, PyObject *val) in OutputSetattro() argument
1332 GET_ATTR_STRING(name, nameobj); in OutputSetattro()
1388 BufferGetattro(PyObject *self, PyObject *nameobj) in BufferGetattro() argument
1392 GET_ATTR_STRING(name, nameobj); in BufferGetattro()
1404 return PyObject_GenericGetAttr(self, nameobj); in BufferGetattro()
1408 BufferSetattro(PyObject *self, PyObject *nameobj, PyObject *val) in BufferSetattro() argument
1410 GET_ATTR_STRING(name, nameobj); in BufferSetattro()
1503 RangeGetattro(PyObject *self, PyObject *nameobj) in RangeGetattro() argument
1505 GET_ATTR_STRING(name, nameobj); in RangeGetattro()
1512 return PyObject_GenericGetAttr(self, nameobj); in RangeGetattro()
1589 TabPageGetattro(PyObject *self, PyObject *nameobj) in TabPageGetattro() argument
1593 GET_ATTR_STRING(name, nameobj); in TabPageGetattro()
1605 return PyObject_GenericGetAttr(self, nameobj); in TabPageGetattro()
1611 WindowGetattro(PyObject *self, PyObject *nameobj) in WindowGetattro() argument
1615 GET_ATTR_STRING(name, nameobj); in WindowGetattro()
1627 return PyObject_GenericGetAttr(self, nameobj); in WindowGetattro()
1631 WindowSetattro(PyObject *self, PyObject *nameobj, PyObject *val) in WindowSetattro() argument
1633 GET_ATTR_STRING(name, nameobj); in WindowSetattro()
1672 CurrentGetattro(PyObject *self, PyObject *nameobj) in CurrentGetattro() argument
1675 GET_ATTR_STRING(name, nameobj); in CurrentGetattro()
1677 return PyObject_GenericGetAttr(self, nameobj); in CurrentGetattro()
1682 CurrentSetattro(PyObject *self, PyObject *nameobj, PyObject *value) in CurrentSetattro() argument
1684 GET_ATTR_STRING(name, nameobj); in CurrentSetattro()
1691 DictionaryGetattro(PyObject *self, PyObject *nameobj) in DictionaryGetattro() argument
1695 GET_ATTR_STRING(name, nameobj); in DictionaryGetattro()
1702 return PyObject_GenericGetAttr(self, nameobj); in DictionaryGetattro()
1706 DictionarySetattro(PyObject *self, PyObject *nameobj, PyObject *val) in DictionarySetattro() argument
1708 GET_ATTR_STRING(name, nameobj); in DictionarySetattro()
1715 ListGetattro(PyObject *self, PyObject *nameobj) in ListGetattro() argument
1717 GET_ATTR_STRING(name, nameobj); in ListGetattro()
1722 return PyObject_GenericGetAttr(self, nameobj); in ListGetattro()
1726 ListSetattro(PyObject *self, PyObject *nameobj, PyObject *val) in ListSetattro() argument
1728 GET_ATTR_STRING(name, nameobj); in ListSetattro()
1735 FunctionGetattro(PyObject *self, PyObject *nameobj) in FunctionGetattro() argument
1740 GET_ATTR_STRING(name, nameobj); in FunctionGetattro()
1746 return PyObject_GenericGetAttr(self, nameobj); in FunctionGetattro()