| /NextBSD/contrib/llvm/tools/clang/lib/Driver/ |
| HD | ToolChain.cpp | 51 Arg *Exceptions = Args.getLastArgNoClaim( in CalculateRTTIMode() local 54 if (Exceptions && in CalculateRTTIMode() 55 (Exceptions->getOption().matches(options::OPT_fexceptions) || in CalculateRTTIMode() 56 Exceptions->getOption().matches(options::OPT_fcxx_exceptions))) in CalculateRTTIMode()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | DeclSpec.cpp | 181 ParsedType *Exceptions, in getFunction() argument 217 I.Fun.Exceptions = nullptr; in getFunction() 251 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; in getFunction() 253 I.Fun.Exceptions[i].Ty = Exceptions[i]; in getFunction() 254 I.Fun.Exceptions[i].Range = ExceptionRanges[i]; in getFunction()
|
| HD | SemaTemplateVariadic.cpp | 771 if (Chunk.Fun.Exceptions[i] in containsUnexpandedParameterPacks()
|
| HD | SemaExceptionSpec.cpp | 272 ESI.Exceptions = OldProto->exceptions(); in CheckEquivalentExceptionSpec()
|
| HD | SemaDeclCXX.cpp | 217 Exceptions.push_back(E); in CalledDecl() 13615 SmallVectorImpl<QualType> &Exceptions, in checkExceptionSpecification() argument 13617 Exceptions.clear(); in checkExceptionSpecification() 13620 Exceptions.reserve(DynamicExceptions.size()); in checkExceptionSpecification() 13639 Exceptions.push_back(ET); in checkExceptionSpecification() 13641 ESI.Exceptions = Exceptions; in checkExceptionSpecification() 13686 llvm::SmallVector<QualType, 4> Exceptions; in actOnDelayedExceptionSpecification() local 13689 DynamicExceptionRanges, NoexceptExpr, Exceptions, in actOnDelayedExceptionSpecification()
|
| HD | TreeTransform.h | 575 SmallVectorImpl<QualType> &Exceptions, 4725 SmallVectorImpl<QualType> &Exceptions, bool &Changed) { in TransformExceptionSpec() argument 4759 for (QualType T : ESI.Exceptions) { in TransformExceptionSpec() 4793 Exceptions.push_back(U); in TransformExceptionSpec() 4806 Exceptions.push_back(U); in TransformExceptionSpec() 4815 Exceptions.push_back(U); in TransformExceptionSpec() 4819 ESI.Exceptions = Exceptions; in TransformExceptionSpec()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Index/ |
| HD | CommentToXML.cpp | 93 llvm::TinyPtrVector<const BlockCommandComment *> Exceptions; member 136 Exceptions.push_back(BCC); in FullCommentParts() 984 if (Parts.Exceptions.size() != 0) { in visitFullComment() 986 for (unsigned i = 0, e = Parts.Exceptions.size(); i != e; ++i) in visitFullComment() 987 visit(Parts.Exceptions[i]); in visitFullComment()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Type.cpp | 826 for (auto exceptionType : info.ExceptionSpec.Exceptions) { in VisitFunctionProtoType() 842 info.ExceptionSpec.Exceptions in VisitFunctionProtoType() 1145 for (auto exceptionType : info.ExceptionSpec.Exceptions) { in substObjCTypeArgs() 1164 info.ExceptionSpec.Exceptions in substObjCTypeArgs() 2569 NumExceptions(epi.ExceptionSpec.Exceptions.size()), in FunctionProtoType() 2596 for (QualType ExceptionType : epi.ExceptionSpec.Exceptions) { in FunctionProtoType() 2751 for (QualType Ex : epi.ExceptionSpec.Exceptions) in Profile()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | DeclSpec.h | 1270 TypeAndRange *Exceptions; member 1304 delete[] Exceptions; in destroy() 1500 ParsedType *Exceptions,
|
| HD | Sema.h | 4167 SmallVector<QualType, 4> Exceptions; variable 4171 Exceptions.clear(); in ClearExceptions() 4189 unsigned size() const { return Exceptions.size(); } in size() 4192 const QualType *data() const { return Exceptions.data(); } in data() 4206 ESI.Exceptions = Exceptions; in getExceptionSpec() 4268 SmallVectorImpl<QualType> &Exceptions,
|
| /NextBSD/sys/amd64/conf/ |
| HD | MINIMAL | 8 # Exceptions:
|
| /NextBSD/lib/libc/softfloat/ |
| HD | softfloat.txt | 52 Exceptions and Exception Flags 166 Exceptions and Exception Flags
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | LangOptions.def | 108 LANGOPT(Exceptions , 1, 0, "exception handling")
|
| /NextBSD/contrib/tcpdump/ |
| HD | print-snmp.c | 155 static const char *Exceptions[] = { variable 238 defineCLASS(Exceptions),
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGDeclCXX.cpp | 266 if (!getLangOpts().Exceptions) in CreateGlobalInitOrDestructFunction()
|
| HD | CGClass.cpp | 432 if (CGF.CGM.getLangOpts().Exceptions && in EmitBaseInitializer() 1736 if (getLangOpts().Exceptions && in EmitCXXAggrConstructorCall() 1940 if (CGM.getLangOpts().Exceptions && !ClassDecl->hasTrivialDestructor()) { in EmitDelegatingCXXConstructorCall()
|
| HD | CGException.cpp | 312 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions) in SimplifyPersonality() 655 if (!LO.Exceptions) { in getInvokeDestImpl()
|
| HD | CGExpr.cpp | 268 CodeGenFunction::destroyCXXObject, CGF.getLangOpts().Exceptions, in pushTemporaryCleanup() 284 CGF.getLangOpts().Exceptions); in pushTemporaryCleanup() 291 CGF.getLangOpts().Exceptions); in pushTemporaryCleanup()
|
| HD | CodeGenFunction.h | 1168 return getLangOpts().Exceptions; in needsEHCleanup() 1170 return getLangOpts().Exceptions && in needsEHCleanup()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Parse/ |
| HD | ParseDeclCXX.cpp | 3404 SmallVectorImpl<ParsedType> &Exceptions, in ParseDynamicExceptionSpecification() argument 3444 Exceptions.push_back(Res.get()); in ParseDynamicExceptionSpecification() 3455 Exceptions.empty()); in ParseDynamicExceptionSpecification() 3456 return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic; in ParseDynamicExceptionSpecification()
|
| /NextBSD/share/misc/ |
| HD | scsi_modes | 99 0x1c "Informational Exceptions Control Page" {
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/ |
| HD | PPCSchedule440.td | 65 // stages until their source operands become ready. Exceptions:
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | InitPreprocessor.cpp | 574 if (!LangOpts.MSVCCompat && LangOpts.Exceptions) in InitializePredefinedMacros()
|
| /NextBSD/contrib/gcc/config/i386/ |
| HD | i386.md | 5180 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5251 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5300 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5350 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5396 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5444 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5525 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5595 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5641 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ 5685 Exceptions: -128 encodes smaller than 128, so swap sign and op. */ [all …]
|
| /NextBSD/sys/cddl/contrib/opensolaris/ |
| HD | OPENSOLARIS.LICENSE | 3 Exceptions are noted within the associated source files.
|