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

12

/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
82 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; local
89 Exceptions.push_back(std::move(WE));
250 ExceptionPointers.reserve(Exceptions.size());
253 for (auto &WE : Exceptions) {
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFuchsia.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
312 bool Exceptions = local
314 addMultilibFlag(Exceptions, "-fexceptions", Flags);
315 addMultilibFlag(!Exceptions, "-fno-exceptions", Flags);
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
174 ParsedType *Exceptions,
212 I.Fun.Exceptions = nullptr;
262 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
264 I.Fun.Exceptions[i].Ty = Exceptions[i];
265 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
161 getFunction(bool hasProto, bool isAmbiguous, SourceLocation LParenLoc, ParamInfo *Params, unsigned NumParams, SourceLocation EllipsisLoc, SourceLocation RParenLoc, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceRange ESpecRange, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, CachedTokens *ExceptionSpecTokens, ArrayRef<NamedDecl*> DeclsInPrototype, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType, SourceLocation TrailingReturnTypeLoc, DeclSpec *MethodQualifiers) argument
H A DSemaTemplateVariadic.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
952 if (Chunk.Fun.Exceptions[i]
H A DSemaExceptionSpec.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
379 ESI.Exceptions = OldProto->exceptions();
1603 // Didn't find an @catch(...). Exceptions from the @try body can escape.
H A DSemaTemplateInstantiate.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1355 SmallVectorImpl<QualType> &Exceptions,
1652 SmallVectorImpl<QualType> &Exceptions, bool &Changed) {
1657 return inherited::TransformExceptionSpec(Loc, ESI, Exceptions, Changed);
1650 TransformExceptionSpec( SourceLocation Loc, FunctionProtoType::ExceptionSpecInfo &ESI, SmallVectorImpl<QualType> &Exceptions, bool &Changed) argument
H A DTreeTransform.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
683 SmallVectorImpl<QualType> &Exceptions,
6197 SmallVectorImpl<QualType> &Exceptions, bool &Changed) {
6231 for (QualType T : ESI.Exceptions) {
6265 Exceptions.push_back(U);
6278 Exceptions.push_back(U);
6287 Exceptions.push_back(U);
6291 ESI.Exceptions = Exceptions;
6292 if (ESI.Exceptions
6195 TransformExceptionSpec( SourceLocation Loc, FunctionProtoType::ExceptionSpecInfo &ESI, SmallVectorImpl<QualType> &Exceptions, bool &Changed) argument
[all...]
H A DSemaDeclCXX.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
247 Exceptions.push_back(E);
19099 SmallVectorImpl<QualType> &Exceptions,
19101 Exceptions.clear();
19104 Exceptions.reserve(DynamicExceptions.size());
19123 Exceptions.push_back(ET);
19125 ESI.Exceptions = Exceptions;
19162 llvm::SmallVector<QualType, 4> Exceptions;
19165 DynamicExceptionRanges, NoexceptExpr, Exceptions,
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
93 llvm::TinyPtrVector<const BlockCommandComment *> Exceptions; member in struct:__anon652::FullCommentParts
136 Exceptions.push_back(BCC);
979 if (Parts.Exceptions.size() != 0) {
980 Result << "<Exceptions>";
981 for (unsigned i = 0, e = Parts.Exceptions.size(); i != e; ++i)
982 visit(Parts.Exceptions[i]);
983 Result << "</Exceptions>";
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
227 esi.Exceptions = asImpl().template readArray<QualType>(buffer);
H A DAbstractBasicWriter.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
208 asImpl().writeArray(esi.Exceptions);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
88 ArrayRef<MCPhysReg> Exceptions) const {
95 if (!RegisterSet[SR] && !is_contained(Exceptions, Reg)) {
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1089 for (auto exceptionType : info.ExceptionSpec.Exceptions) {
1101 info.ExceptionSpec.Exceptions =
1385 for (auto exceptionType : info.ExceptionSpec.Exceptions) {
1398 info.ExceptionSpec.Exceptions =
3503 size_t NumExceptions = epi.ExceptionSpec.Exceptions.size();
3511 for (QualType ExceptionType : epi.ExceptionSpec.Exceptions) {
3686 for (QualType Ex : epi.ExceptionSpec.Exceptions)
H A DTextNodeDumper.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1704 if (!EPI.ExceptionSpec.Exceptions.empty()) {
1706 OS << "Exceptions:";
1707 for (unsigned I = 0, N = EPI.ExceptionSpec.Exceptions.size(); I != N;
1711 dumpType(EPI.ExceptionSpec.Exceptions[I]);
H A DASTContext.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4356 for (QualType ET : ESI.Exceptions) {
4447 for (QualType ET : EPI.ExceptionSpec.Exceptions) {
4456 CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage;
4489 EPI.ExceptionSpec.Type, EPI.ExceptionSpec.Exceptions.size());
12654 mergeTypeLists(*this, ExceptionTypeStorage, ESI1.Exceptions,
12655 ESI2.Exceptions);
12657 Result.Exceptions = ExceptionTypeStorage;
12831 SmallVector<QualType, 8> Exceptions;
12833 EPIX.ExceptionSpec, EPIY.ExceptionSpec, Exceptions, tru
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1391 TypeAndRange *Exceptions; member in union:clang::DeclaratorChunk::FunctionTypeInfo::__anon145
1436 delete[] Exceptions;
1674 ParsedType *Exceptions,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1152 ArrayRef<MCPhysReg> Exceptions = ArrayRef<MCPhysReg>()) const;
/freebsd-current/contrib/tcpdump/
H A Dprint-snmp.c156 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
158 static const char *Exceptions[] = { variable
241 defineCLASS(Exceptions),
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4058 SourceRange &SpecificationRange, SmallVectorImpl<ParsedType> &Exceptions,
4098 Exceptions.push_back(Res.get());
4109 Exceptions.empty());
4110 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
4057 ParseDynamicExceptionSpecification( SourceRange &SpecificationRange, SmallVectorImpl<ParsedType> &Exceptions, SmallVectorImpl<SourceRange> &Ranges) argument
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
338 if (!LangOpts.CPlusPlus || !LangOpts.ObjC || !LangOpts.Exceptions)
784 if (!LO.Exceptions || LO.IgnoreExceptions) {
H A DCGDeclCXX.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
452 if (!getLangOpts().Exceptions)
H A DCGClass.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
584 if (CGF.CGM.getLangOpts().Exceptions &&
2068 if (getLangOpts().Exceptions &&
2486 if (CGM.getLangOpts().Exceptions && !ClassDecl->hasTrivialDestructor()) {
H A DCGBlocks.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
91 if (CGM.getLangOpts().Exceptions)
1784 if (CGM.getLangOpts().Exceptions)
1825 if (!EHOnly || CGF.getLangOpts().Exceptions) {
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
932 if (!LangOpts.MSVCCompat && LangOpts.Exceptions)
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT-586_asm.asm7 ;// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.

Completed in 400 milliseconds

12