Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DDeclSpec.cpp173 unsigned NumExceptions, in getFunction() argument
207 I.Fun.NumExceptions = 0; in getFunction()
240 if (NumExceptions) { in getFunction()
241 I.Fun.NumExceptions = NumExceptions; in getFunction()
242 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; in getFunction()
243 for (unsigned i = 0; i != NumExceptions; ++i) { in getFunction()
DSemaTemplateVariadic.cpp771 for (unsigned i = 0; i != Chunk.Fun.NumExceptions; ++i) { in containsUnexpandedParameterPacks()
DSemaType.cpp4017 unsigned N = FTI.NumExceptions; in GetFullTypeForDeclarator()
/external/clang/lib/CodeGen/
DCGException.cpp452 unsigned NumExceptions = Proto->getNumExceptions(); in EmitStartEHSpec() local
453 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions); in EmitStartEHSpec()
455 for (unsigned I = 0; I != NumExceptions; ++I) { in EmitStartEHSpec()
/external/clang/include/clang/Sema/
DDeclSpec.h1228 unsigned NumExceptions; member
1509 unsigned NumExceptions,
/external/clang/include/clang/AST/
DType.h3109 unsigned NumExceptions : 9;
3219 unsigned getNumExceptions() const { return NumExceptions; }
3221 assert(i < NumExceptions && "Invalid exception number!");
3299 return exception_begin() + NumExceptions;
/external/clang/lib/AST/
DType.cpp2672 NumExceptions(epi.ExceptionSpec.Exceptions.size()), in FunctionProtoType()
2793 for (unsigned I = 0, N = NumExceptions; I != N; ++I) in isNothrow()