Searched refs:NumExceptions (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/Sema/ |
D | DeclSpec.cpp | 158 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()
|
D | SemaExceptionSpec.cpp | 156 EPI.NumExceptions = OldProto->getNumExceptions(); in CheckEquivalentExceptionSpec()
|
D | SemaType.cpp | 2198 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()
|
D | SemaTemplateInstantiateDecl.cpp | 2270 EPI.NumExceptions = Exceptions.size(); in InitFunctionInstantiation()
|
D | SemaLookup.cpp | 695 EPI.NumExceptions = 0; in LookupDirect()
|
D | SemaExprCXX.cpp | 1651 EPI.NumExceptions = 1; in DeclareGlobalAllocationFunction()
|
D | SemaDeclCXX.cpp | 6395 epi.NumExceptions = exceptSpec.size(); in AdjustDestructorExceptionSpec()
|
/external/clang/include/clang/AST/ |
D | Type.h | 2685 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/ |
D | CGException.cpp | 465 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/ |
D | Type.cpp | 1513 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()
|
D | ASTContext.cpp | 2036 CanonicalEPI.NumExceptions = 0; in getFunctionType() 2060 Size += EPI.NumExceptions * sizeof(QualType); in getFunctionType()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 1093 unsigned NumExceptions; member 1306 unsigned NumExceptions,
|
D | Sema.h | 2690 EPI.NumExceptions = size(); in getEPI()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 3348 EPI.NumExceptions = Record[Idx++]; in ReadTypeRecord() 3350 for (unsigned I = 0; I != EPI.NumExceptions; ++I) in ReadTypeRecord()
|