Home
last modified time | relevance | path

Searched refs:CT_Cannot (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp534 if (OldCanThrow == CT_Cannot && NewCanThrow == CT_Cannot) in CheckEquivalentExceptionSpecImpl()
779 SubCanThrow == CT_Cannot) in CheckExceptionSpecSubset()
966 return CT_Cannot; in canCalleeThrow()
1020 return CT_Cannot; in canDynamicCastThrow()
1030 return CT_Cannot; in canTypeidThrow()
1038 return CT_Cannot; in canTypeidThrow()
1041 return CT_Cannot; in canTypeidThrow()
1044 return CT_Cannot; in canTypeidThrow()
1087 CT = CT_Cannot; in canThrow()
1263 return CT_Cannot; in canThrow()
[all …]
H A DSemaExprCXX.cpp4999 return S.canThrow(Result.get()) == CT_Cannot; in evaluateTypeTrait()
5240 return Self.canThrow(Result.get()) == CT_Cannot; in EvaluateBinaryTypeTrait()
H A DSemaTemplateDeduction.cpp1710 case CT_Cannot: in DeduceTemplateArgumentsByTypeMatch()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DExceptionSpecificationType.h54 CT_Cannot, enumerator
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCoroutine.cpp138 Proto->canThrow() == CT_Cannot) in memberCallExpressionCanThrow()
H A DCGException.cpp465 if (isNoexceptExceptionSpec(EST) && Proto->canThrow() == CT_Cannot) { in EmitStartEHSpec()
542 if (isNoexceptExceptionSpec(EST) && Proto->canThrow() == CT_Cannot) { in EmitEndEHSpec()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp2993 return CT_Cannot; in canThrow()
H A DASTImporter.cpp6737 ToCanThrow = E->getValue() ? CT_Can : CT_Cannot; in VisitCXXNoexceptExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h3734 CXXNoexceptExprBits.Value = Val == CT_Cannot; in CXXNoexceptExpr()
H A DType.h3998 return ResultIfDependent ? canThrow() != CT_Can : canThrow() == CT_Cannot;