Searched refs:ExceptionSpecificationKind (Results 1 – 2 of 2) sorted by relevance
7 from clang.cindex import ExceptionSpecificationKind31 ('square1', ExceptionSpecificationKind.NONE),32 ('square2', ExceptionSpecificationKind.BASIC_NOEXCEPT),33 ('square3', ExceptionSpecificationKind.COMPUTED_NOEXCEPT)
1390 class ExceptionSpecificationKind(BaseEnumeration): class1403 ExceptionSpecificationKind.NONE = ExceptionSpecificationKind(0)1404 ExceptionSpecificationKind.DYNAMIC_NONE = ExceptionSpecificationKind(1)1405 ExceptionSpecificationKind.DYNAMIC = ExceptionSpecificationKind(2)1406 ExceptionSpecificationKind.MS_ANY = ExceptionSpecificationKind(3)1407 ExceptionSpecificationKind.BASIC_NOEXCEPT = ExceptionSpecificationKind(4)1408 ExceptionSpecificationKind.COMPUTED_NOEXCEPT = ExceptionSpecificationKind(5)1409 ExceptionSpecificationKind.UNEVALUATED = ExceptionSpecificationKind(6)1410 ExceptionSpecificationKind.UNINSTANTIATED = ExceptionSpecificationKind(7)1411 ExceptionSpecificationKind.UNPARSED = ExceptionSpecificationKind(8)[all …]