Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp177 DeclsInPrototype, in getFunction() argument
278 if (!DeclsInPrototype.empty()) { in getFunction()
281 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
283 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
284 for (size_t J = 0; J < DeclsInPrototype.size(); ++J) in getFunction()
285 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1452 NamedDecl **DeclsInPrototype; member
1491 delete[] DeclsInPrototype; in destroy()
1580 return llvm::ArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1729 ArrayRef<NamedDecl *> DeclsInPrototype,
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp7313 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
7319 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
7326 llvm::sort(DeclsInPrototype, [](Decl *D1, Decl *D2) { in ParseFunctionDeclarator()
7341 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()