Home
last modified time | relevance | path

Searched refs:PyAttributeErrorObject (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/python/cpython3/Python/
Dsuggestions.c178 offer_suggestions_for_attribute_error(PyAttributeErrorObject *exc) in offer_suggestions_for_attribute_error()
273 result = offer_suggestions_for_attribute_error((PyAttributeErrorObject *) exception); in _Py_Offer_Suggestions()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/aosp_15_r20/external/python/cpython3/Objects/
Dexceptions.c2255 AttributeError_init(PyAttributeErrorObject *self, PyObject *args, PyObject *kwds) in AttributeError_init()
2286 AttributeError_clear(PyAttributeErrorObject *self) in AttributeError_clear()
2294 AttributeError_dealloc(PyAttributeErrorObject *self) in AttributeError_dealloc()
2302 AttributeError_traverse(PyAttributeErrorObject *self, visitproc visit, void *arg) in AttributeError_traverse()
2310 {"name", T_OBJECT, offsetof(PyAttributeErrorObject, name), 0, PyDoc_STR("attribute name")},
2311 {"obj", T_OBJECT, offsetof(PyAttributeErrorObject, obj), 0, PyDoc_STR("object")},
Dobject.c888 PyAttributeErrorObject* the_exc = (PyAttributeErrorObject*) value; in set_attribute_error_context()