Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DDeclSpec.cpp179 DeclsInPrototype, in getFunction() argument
279 if (!DeclsInPrototype.empty()) { in getFunction()
282 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
284 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
285 for (size_t J = 0; J < DeclsInPrototype.size(); ++J) in getFunction()
286 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()
/external/llvm-project/clang/include/clang/Sema/
DDeclSpec.h1354 NamedDecl **DeclsInPrototype; member
1393 delete[] DeclsInPrototype; in destroy()
1492 return llvm::makeArrayRef(DeclsInPrototype, NumExceptionsOrDecls); in getDeclsInPrototype()
1638 ArrayRef<NamedDecl *> DeclsInPrototype,
/external/llvm-project/clang/lib/Parse/
DParseDecl.cpp6577 SmallVector<NamedDecl *, 0> DeclsInPrototype; in ParseFunctionDeclarator() local
6584 DeclsInPrototype.push_back(ND); in ParseFunctionDeclarator()
6597 ExceptionSpecTokens, DeclsInPrototype, StartLoc, in ParseFunctionDeclarator()