Home
last modified time | relevance | path

Searched refs:ExceptionSpecificationKind (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_exception_specification_kind.py7 from clang.cindex import ExceptionSpecificationKind
31 ('square1', ExceptionSpecificationKind.NONE),
32 ('square2', ExceptionSpecificationKind.BASIC_NOEXCEPT),
33 ('square3', ExceptionSpecificationKind.COMPUTED_NOEXCEPT)
/openbsd-src/gnu/llvm/clang/bindings/python/clang/
H A Dcindex.py1390 class ExceptionSpecificationKind(BaseEnumeration): class
1403 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 …]