Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp171 DeclsInPrototype, in getFunction() argument
268 if (!DeclsInPrototype.empty()) { in getFunction()
271 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
273 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
274 for (size_t J = 0; J < DeclsInPrototype.size(); ++J) in getFunction()
275 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1338 NamedDecl **DeclsInPrototype; member
1373 delete[] DeclsInPrototype; in destroy()
1472 return llvm::makeArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1607 ArrayRef<NamedDecl *> DeclsInPrototype,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseDecl.cpp6221 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
6228 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
6241 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()