Home
last modified time | relevance | path

Searched refs:Exceptions (Results 1 – 25 of 49) sorted by relevance

12

/NextBSD/contrib/llvm/tools/clang/lib/Driver/
HDToolChain.cpp51 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/
HDDeclSpec.cpp181 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()
HDSemaTemplateVariadic.cpp771 if (Chunk.Fun.Exceptions[i] in containsUnexpandedParameterPacks()
HDSemaExceptionSpec.cpp272 ESI.Exceptions = OldProto->exceptions(); in CheckEquivalentExceptionSpec()
HDSemaDeclCXX.cpp217 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()
HDTreeTransform.h575 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/
HDCommentToXML.cpp93 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/
HDType.cpp826 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/
HDDeclSpec.h1270 TypeAndRange *Exceptions; member
1304 delete[] Exceptions; in destroy()
1500 ParsedType *Exceptions,
HDSema.h4167 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/
HDMINIMAL8 # Exceptions:
/NextBSD/lib/libc/softfloat/
HDsoftfloat.txt52 Exceptions and Exception Flags
166 Exceptions and Exception Flags
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDLangOptions.def108 LANGOPT(Exceptions , 1, 0, "exception handling")
/NextBSD/contrib/tcpdump/
HDprint-snmp.c155 static const char *Exceptions[] = { variable
238 defineCLASS(Exceptions),
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGDeclCXX.cpp266 if (!getLangOpts().Exceptions) in CreateGlobalInitOrDestructFunction()
HDCGClass.cpp432 if (CGF.CGM.getLangOpts().Exceptions && in EmitBaseInitializer()
1736 if (getLangOpts().Exceptions && in EmitCXXAggrConstructorCall()
1940 if (CGM.getLangOpts().Exceptions && !ClassDecl->hasTrivialDestructor()) { in EmitDelegatingCXXConstructorCall()
HDCGException.cpp312 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions) in SimplifyPersonality()
655 if (!LO.Exceptions) { in getInvokeDestImpl()
HDCGExpr.cpp268 CodeGenFunction::destroyCXXObject, CGF.getLangOpts().Exceptions, in pushTemporaryCleanup()
284 CGF.getLangOpts().Exceptions); in pushTemporaryCleanup()
291 CGF.getLangOpts().Exceptions); in pushTemporaryCleanup()
HDCodeGenFunction.h1168 return getLangOpts().Exceptions; in needsEHCleanup()
1170 return getLangOpts().Exceptions && in needsEHCleanup()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseDeclCXX.cpp3404 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/
HDscsi_modes99 0x1c "Informational Exceptions Control Page" {
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCSchedule440.td65 // stages until their source operands become ready. Exceptions:
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDInitPreprocessor.cpp574 if (!LangOpts.MSVCCompat && LangOpts.Exceptions) in InitializePredefinedMacros()
/NextBSD/contrib/gcc/config/i386/
HDi386.md5180 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/
HDOPENSOLARIS.LICENSE3 Exceptions are noted within the associated source files.

12