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

12

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp165 ParsedType *Exceptions,
199 I.Fun.Exceptions = 0;
230 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
232 I.Fun.Exceptions[i].Ty = Exceptions[i];
233 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
148 getFunction(bool hasProto, bool isAmbiguous, SourceLocation LParenLoc, ParamInfo *ArgInfo, unsigned NumArgs, SourceLocation EllipsisLoc, SourceLocation RParenLoc, unsigned TypeQuals, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation ConstQualifierLoc, SourceLocation VolatileQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceLocation ESpecLoc, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
H A DSemaTemplateInstantiateDecl.cpp2574 SmallVector<QualType, 4> Exceptions; local
2611 Exceptions.push_back(T);
2628 Exceptions.push_back(T);
2644 Exceptions.push_back(T);
2672 EPI.NumExceptions = Exceptions.size();
2673 EPI.Exceptions = Exceptions.data();
H A DSemaExceptionSpec.cpp223 EPI.Exceptions = OldProto->exception_begin();
H A DSemaDeclCXX.cpp217 Exceptions.push_back(*E);
12150 SmallVectorImpl<QualType> &Exceptions,
12152 Exceptions.clear();
12155 Exceptions.reserve(DynamicExceptions.size());
12172 Exceptions.push_back(ET);
12174 EPI.NumExceptions = Exceptions.size();
12175 EPI.Exceptions = Exceptions.data();
12146 checkExceptionSpecification(ExceptionSpecificationType EST, ArrayRef<ParsedType> DynamicExceptions, ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, SmallVectorImpl<QualType> &Exceptions, FunctionProtoType::ExtProtoInfo &EPI) argument
H A DSemaType.cpp686 /*Exceptions=*/0,
2857 SmallVector<QualType, 4> Exceptions; local
2869 DynamicExceptions.push_back(FTI.Exceptions[I].Ty);
2870 DynamicExceptionRanges.push_back(FTI.Exceptions[I].Range);
2880 Exceptions,
H A DSemaExprCXX.cpp1580 if (!getLangOpts().Exceptions) {
1946 EPI.Exceptions = &BadAllocType;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1200 TypeAndRange *Exceptions; member in union:clang::DeclaratorChunk::FunctionTypeInfo::__anon2860
1226 delete[] Exceptions;
1414 ParsedType *Exceptions,
H A DSema.h3575 SmallVector<QualType, 4> Exceptions; member in class:clang::Sema::ImplicitExceptionSpecification
3579 Exceptions.clear();
3597 unsigned size() const { return Exceptions.size(); }
3600 const QualType *data() const { return Exceptions.data(); }
3614 EPI.Exceptions = data();
3679 SmallVectorImpl<QualType> &Exceptions,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp1624 if (epi.Exceptions[i]->isDependentType())
1626 else if (epi.Exceptions[i]->isInstantiationDependentType())
1629 if (epi.Exceptions[i]->containsUnexpandedParameterPack())
1632 exnSlot[i] = epi.Exceptions[i];
1739 ID.AddPointer(epi.Exceptions[i].getAsOpaquePtr());
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDeclCXX.cpp242 if (!CGM.getLangOpts().Exceptions)
H A DCGClass.cpp420 if (CGF.CGM.getLangOpts().Exceptions &&
1593 if (getLangOpts().Exceptions &&
1806 if (CGM.getLangOpts().Exceptions && !ClassDecl->hasTrivialDestructor()) {
H A DCGException.cpp318 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions)
680 if (!CGM.getLangOpts().Exceptions)
H A DCodeGenFunction.h1401 return getLangOpts().Exceptions;
1403 return getLangOpts().Exceptions &&
H A DCGExpr.cpp434 destroyCXXObject, getLangOpts().Exceptions);
460 destroyCXXObject, getLangOpts().Exceptions);
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-snmp.c156 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
158 const char *Exceptions[] = { variable
241 defineCLASS(Exceptions),
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp2910 SmallVectorImpl<ParsedType> &Exceptions,
2949 Exceptions.push_back(Res.get());
2961 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
2908 ParseDynamicExceptionSpecification( SourceRange &SpecificationRange, SmallVectorImpl<ParsedType> &Exceptions, SmallVectorImpl<SourceRange> &Ranges) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPMacroExpansion.cpp725 .Case("cxx_exceptions", LangOpts.Exceptions)
/freebsd-10.0-release/crypto/openssl/util/
H A Dpod2man.pl129 Exceptions, return codes, exit stati, and errno settings.
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2783 NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2794 const QualType *Exceptions; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
2842 // Exceptions - There is another variable size array after ArgInfo that
2845 // NoexceptExpr - Instead of Exceptions, there may be a single Expr* pointing
2848 // ExceptionSpecDecl, ExceptionSpecTemplate - Instead of Exceptions, there may
2853 // ConsumedArgs - A variable size array, following Exceptions
2892 EPI.Exceptions = exception_begin();
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1369 SmallVectorImpl<ParsedType> &Exceptions,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp4638 SmallVector<QualType, 2> Exceptions; local
4642 Exceptions.push_back(readType(*Loc.F, Record, Idx));
4643 EPI.Exceptions = Exceptions.data();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp218 // Opts.Exceptions = Args.hasArg(OPT_fexceptions);
1974 proto_info.Exceptions = NULL;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp1229 Opts.Exceptions = Args.hasArg(OPT_fexceptions);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp1447 if (Context->getLangOpts().Exceptions) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DTargets.cpp560 if (Opts.Exceptions)

Completed in 609 milliseconds

12