Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h1365 NamedDecl **DeclsInPrototype; member
1404 delete[] DeclsInPrototype; in destroy()
1493 return llvm::makeArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1640 ArrayRef<NamedDecl *> DeclsInPrototype,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDecl.cpp6637 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
6644 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
6657 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()