Home
last modified time | relevance | path

Searched refs:NumExceptions (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/Sema/
DDeclSpec.cpp158 unsigned NumExceptions, in getFunction() argument
181 I.Fun.NumExceptions = 0; in getFunction()
209 if (NumExceptions) { in getFunction()
210 I.Fun.NumExceptions = NumExceptions; in getFunction()
211 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; in getFunction()
212 for (unsigned i = 0; i != NumExceptions; ++i) { in getFunction()
DSemaExceptionSpec.cpp156 EPI.NumExceptions = OldProto->getNumExceptions(); in CheckEquivalentExceptionSpec()
DSemaType.cpp2198 Exceptions.reserve(FTI.NumExceptions); in GetFullTypeForDeclarator()
2199 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) { in GetFullTypeForDeclarator()
2207 EPI.NumExceptions = Exceptions.size(); in GetFullTypeForDeclarator()
DSemaTemplateInstantiateDecl.cpp2270 EPI.NumExceptions = Exceptions.size(); in InitFunctionInstantiation()
DSemaLookup.cpp695 EPI.NumExceptions = 0; in LookupDirect()
DSemaExprCXX.cpp1651 EPI.NumExceptions = 1; in DeclareGlobalAllocationFunction()
DSemaDeclCXX.cpp6395 epi.NumExceptions = exceptSpec.size(); in AdjustDestructorExceptionSpec()
/external/clang/include/clang/AST/
DType.h2685 RefQualifier(RQ_None), NumExceptions(0), Exceptions(0), NoexceptExpr(0),
2693 unsigned NumExceptions;
2718 unsigned NumExceptions : 9;
2747 eh_end += NumExceptions;
2769 EPI.NumExceptions = NumExceptions;
2805 unsigned getNumExceptions() const { return NumExceptions; }
2807 assert(i < NumExceptions && "Invalid exception number!");
2858 return exception_begin() + NumExceptions;
/external/clang/lib/CodeGen/
DCGException.cpp465 unsigned NumExceptions = Proto->getNumExceptions(); in EmitStartEHSpec() local
466 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions); in EmitStartEHSpec()
468 for (unsigned I = 0; I != NumExceptions; ++I) { in EmitStartEHSpec()
/external/clang/lib/AST/
DType.cpp1513 NumArgs(numArgs), NumExceptions(epi.NumExceptions), in FunctionProtoType()
1534 for (unsigned i = 0, e = epi.NumExceptions; i != e; ++i) { in FunctionProtoType()
1636 for (unsigned i = 0; i != epi.NumExceptions; ++i) in Profile()
DASTContext.cpp2036 CanonicalEPI.NumExceptions = 0; in getFunctionType()
2060 Size += EPI.NumExceptions * sizeof(QualType); in getFunctionType()
/external/clang/include/clang/Sema/
DDeclSpec.h1093 unsigned NumExceptions; member
1306 unsigned NumExceptions,
DSema.h2690 EPI.NumExceptions = size(); in getEPI()
/external/clang/lib/Serialization/
DASTReader.cpp3348 EPI.NumExceptions = Record[Idx++]; in ReadTypeRecord()
3350 for (unsigned I = 0; I != EPI.NumExceptions; ++I) in ReadTypeRecord()