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

/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp103 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
111 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType()))
115 if (FPT->getExceptionSpecType() == EST_Unevaluated)
179 EPI.ExceptionSpecType = OldProto->getExceptionSpecType();
216 switch (OldProto->getExceptionSpecType()) {
347 ExceptionSpecificationType OldEST = Old->getExceptionSpecType();
348 ExceptionSpecificationType NewEST = New->getExceptionSpecType();
525 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType();
546 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType();
H A DSemaType.cpp2416 if (IsTypedefName && FTI.getExceptionSpecType())
2542 if (FTI.getExceptionSpecType() == EST_Dynamic) {
2552 } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) {
2556 S.checkExceptionSpecification(FTI.getExceptionSpecType(),
2563 if (FTI.getExceptionSpecType() == EST_None &&
H A DSemaTemplateInstantiateDecl.cpp2382 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
2498 EPI.ExceptionSpecType = Proto->getExceptionSpecType();
2512 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
H A DSemaDeclCXX.cpp141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
4027 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4042 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
11116 switch (Proto->getExceptionSpecType()) {
H A DSemaDecl.cpp5049 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
H A DSemaExpr.cpp10268 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
/external/clang/lib/AST/
H A DTypePrinter.cpp563 if (getExceptionSpecType() == EST_MSAny)
573 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) {
575 if (getExceptionSpecType() == EST_ComputedNoexcept) {
1350 if (getExceptionSpecType() == EST_MSAny)
1360 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) {
1362 if (getExceptionSpecType() == EST_ComputedNoexcept) {
H A DDeclPrinter.cpp458 if (FT->getExceptionSpecType() == EST_MSAny)
468 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) {
470 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) {
H A DType.cpp1564 if (getExceptionSpecType() == EST_Dynamic) {
1578 } else if (getExceptionSpecType() == EST_ComputedNoexcept) {
1590 } else if (getExceptionSpecType() == EST_Uninstantiated) {
1598 } else if (getExceptionSpecType() == EST_Unevaluated) {
1614 ExceptionSpecificationType est = getExceptionSpecType();
H A DDumpXML.cpp989 setFlag("any", T->getExceptionSpecType() == EST_MSAny);
H A DASTImporter.cpp526 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
528 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
537 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
/external/clang/include/clang/AST/
H A DType.h2819 if (getExceptionSpecType() != EST_ComputedNoexcept)
2839 EPI.ExceptionSpecType = getExceptionSpecType();
2859 ExceptionSpecificationType getExceptionSpecType() const {
2864 return getExceptionSpecType() != EST_None;
2868 return isDynamicExceptionSpec(getExceptionSpecType());
2872 return isNoexceptExceptionSpec(getExceptionSpecType());
2890 if (getExceptionSpecType() != EST_ComputedNoexcept)
2900 if (getExceptionSpecType() != EST_Uninstantiated &&
2901 getExceptionSpecType() != EST_Unevaluated)
2910 if (getExceptionSpecType() !
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h1197 if (getExceptionSpecType() == EST_Dynamic)
1244 ExceptionSpecificationType getExceptionSpecType() const { function in struct:clang::DeclaratorChunk::FunctionTypeInfo
H A DSema.h3346 ExceptionSpecificationType getExceptionSpecType() const { function in class:clang::Sema::ImplicitExceptionSpecification
3367 EPI.ExceptionSpecType = getExceptionSpecType();
/external/clang/lib/CodeGen/
H A DCGException.cpp495 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
563 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
/external/clang/lib/Serialization/
H A DASTWriter.cpp191 Record.push_back(T->getExceptionSpecType());
192 if (T->getExceptionSpecType() == EST_Dynamic) {
196 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) {
198 } else if (T->getExceptionSpecType() == EST_Uninstantiated) {
201 } else if (T->getExceptionSpecType() == EST_Unevaluated) {
/external/clang/lib/Analysis/
H A DCFG.cpp1375 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&

Completed in 379 milliseconds