Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h1388 NamedDecl **DeclsInPrototype; member
1427 delete[] DeclsInPrototype; in destroy()
1516 return llvm::ArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1663 ArrayRef<NamedDecl *> DeclsInPrototype,
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDecl.cpp6982 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
6988 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
7001 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()