Home
last modified time | relevance | path

Searched refs:DeclsInPrototype (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DDeclSpec.cpp179 DeclsInPrototype, in getFunction() argument
280 if (!DeclsInPrototype.empty()) { in getFunction()
283 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
285 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
286 for (size_t J = 0; J < DeclsInPrototype.size(); ++J) in getFunction()
287 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h1366 NamedDecl **DeclsInPrototype; member
1405 delete[] DeclsInPrototype; in destroy()
1494 return llvm::makeArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1641 ArrayRef<NamedDecl *> DeclsInPrototype,
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDecl.cpp6829 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
6835 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
6848 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()