HomeSort by: relevance | last modified time | path
    Searched refs:ExceptionSpecificationKind (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_exception_specification_kind.py 7 from clang.cindex import ExceptionSpecificationKind
31 ('square1', ExceptionSpecificationKind.NONE),
32 ('square2', ExceptionSpecificationKind.BASIC_NOEXCEPT),
33 ('square3', ExceptionSpecificationKind.COMPUTED_NOEXCEPT)
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 1390 class ExceptionSpecificationKind(BaseEnumeration):
1392 An ExceptionSpecificationKind describes the kind of exception specification
1401 return 'ExceptionSpecificationKind.{}'.format(self.name)
1403 ExceptionSpecificationKind.NONE = ExceptionSpecificationKind(0)
1404 ExceptionSpecificationKind.DYNAMIC_NONE = ExceptionSpecificationKind(1)
1405 ExceptionSpecificationKind.DYNAMIC = ExceptionSpecificationKind(2)
1406 ExceptionSpecificationKind.MS_ANY = ExceptionSpecificationKind(3
    [all...]

Completed in 17 milliseconds