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.cpp180 DeclsInPrototype, in getFunction() argument
281 if (!DeclsInPrototype.empty()) { in getFunction()
284 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
286 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
287 for (size_t J = 0; J < DeclsInPrototype.size(); ++J) in getFunction()
288 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1450 NamedDecl **DeclsInPrototype; member
1489 delete[] DeclsInPrototype; in destroy()
1578 return llvm::ArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1727 ArrayRef<NamedDecl *> DeclsInPrototype,
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp7652 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
7658 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
7665 llvm::sort(DeclsInPrototype, [](Decl *D1, Decl *D2) { in ParseFunctionDeclarator()
7680 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()