Searched refs:getExceptionSpecType (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp206 if (FPT->getExceptionSpecType() == EST_Unparsed) {
211 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
219 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType()))
223 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated)
230 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) {
254 auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType();
366 FunctionProtoType::ExceptionSpecInfo ESI = OldProto->getExceptionSpecType();
413 switch (OldProto->getExceptionSpecType()) {
549 ExceptionSpecificationType OldEST = Old->getExceptionSpecType();
550 ExceptionSpecificationType NewEST = New->getExceptionSpecType();
[all...]
H A DSemaTemplateVariadic.cpp917 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
924 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) &&
H A DSemaExprMember.cpp928 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
H A DSemaType.cpp5048 if (IsTypedefName && FTI.getExceptionSpecType() && !LangOpts.CPlusPlus17)
5202 if (FTI.getExceptionSpecType() == EST_Dynamic) {
5212 } else if (isComputedNoexcept(FTI.getExceptionSpecType())) {
5217 FTI.getExceptionSpecType(),
7405 switch (Proto->getExceptionSpecType()) {
H A DSemaDeclCXX.cpp172 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
7152 if (FPT->getExceptionSpecType() != EST_Unevaluated)
8434 if (FD->getExceptionSpecType() == EST_None) {
17496 switch (Proto->getExceptionSpecType()) {
H A DSemaTemplateDeduction.cpp4316 isUnresolvedExceptionSpec(SpecializationFPT->getExceptionSpecType()) &&
H A DSemaTemplateInstantiateDecl.cpp4334 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
H A DSemaOverload.cpp74 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
11683 isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) &&
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4076 return getExceptionSpecSize(getExceptionSpecType(), getNumExceptions());
4088 return hasExtraBitfields(getExceptionSpecType());
4121 ExceptionSpecificationType getExceptionSpecType() const {
4127 bool hasExceptionSpec() const { return getExceptionSpecType() != EST_None; }
4131 return isDynamicExceptionSpec(getExceptionSpecType());
4136 return isNoexceptExceptionSpec(getExceptionSpecType());
4149 Result.Type = getExceptionSpecType();
4165 return getExceptionSpecType() == EST_Dynamic
4180 if (!isComputedNoexcept(getExceptionSpecType()))
4190 if (getExceptionSpecType() !
[all...]
H A DDecl.h2480 ExceptionSpecificationType getExceptionSpecType() const {
2484 return FPT ? FPT->getExceptionSpecType() : EST_None;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp763 if (getExceptionSpecType() == EST_MSAny)
773 } else if (EST_NoThrow == getExceptionSpecType()) {
775 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) {
779 if (isComputedNoexcept(getExceptionSpecType())) {
H A DType.cpp3118 if (getExceptionSpecType() == EST_Dynamic) {
3135 else if (isComputedNoexcept(getExceptionSpecType())) {
3137 assert((getExceptionSpecType() == EST_DependentNoexcept) ==
3148 else if (getExceptionSpecType() == EST_Uninstantiated) {
3156 } else if (getExceptionSpecType() == EST_Unevaluated) {
3166 if (getExceptionSpecType() == EST_Dynamic ||
3167 getExceptionSpecType() == EST_DependentNoexcept) {
3219 switch (getExceptionSpecType()) {
H A DDeclPrinter.cpp706 if (FT->getExceptionSpecType() == EST_MSAny)
716 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) {
718 if (isComputedNoexcept(FT->getExceptionSpecType())) {
H A DASTStructuralEquivalence.cpp403 auto Spec1 = Proto1->getExceptionSpecType();
404 auto Spec2 = Proto2->getExceptionSpecType();
H A DItaniumMangle.cpp2938 if (isComputedNoexcept(T->getExceptionSpecType())) {
2943 assert(T->getExceptionSpecType() == EST_Dynamic);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1383 switch (getExceptionSpecType()) {
1479 ExceptionSpecificationType getExceptionSpecType() const { function in struct:clang::DeclaratorChunk::FunctionTypeInfo
H A DSema.h5511 ExceptionSpecificationType getExceptionSpecType() const { function in class:clang::final::CompleteTypeKind::ImplicitExceptionSpecification
5536 ESI.Type = getExceptionSpecType();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp136 if (isNoexceptExceptionSpec(Proto->getExceptionSpecType()) &&
H A DCGException.cpp463 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
552 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
H A DCGCall.cpp1697 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) &&
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp3167 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) ||
3168 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) &&
3622 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType());
3624 isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType());
4607 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
H A DASTWriter.cpp5910 ->getExceptionSpecType()))
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4562 if (isUnresolvedExceptionSpec(FnTy->getExceptionSpecType()))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp2170 bool NeedLateParse = FTI.getExceptionSpecType() == EST_Unparsed;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp2586 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&

Completed in 783 milliseconds

12