Searched refs:NumDecls (Results 1 – 9 of 9) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | DeclGroup.h | 30 unsigned NumDecls; member 36 DeclGroup() : NumDecls(0) {} in DeclGroup() 40 static DeclGroup *Create(ASTContext &C, Decl **Decls, unsigned NumDecls); 42 unsigned size() const { return NumDecls; } in size() 45 assert (i < NumDecls && "Out-of-bounds access."); 50 assert (i < NumDecls && "Out-of-bounds access."); 72 static DeclGroupRef Create(ASTContext &C, Decl **Decls, unsigned NumDecls) { in Create() argument 73 if (NumDecls == 0) in Create() 75 if (NumDecls == 1) in Create() 77 return DeclGroupRef(DeclGroup::Create(C, Decls, NumDecls)); in Create()
|
| HD | ASTImporter.h | 244 unsigned NumDecls);
|
| HD | DeclBase.h | 982 static void printGroup(Decl** Begin, unsigned NumDecls,
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | DeclGroup.cpp | 20 DeclGroup* DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) { in Create() argument 23 assert(NumDecls > 1 && "Invalid DeclGroup"); in Create() 24 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls; in Create() 26 new (Mem) DeclGroup(NumDecls, Decls); in Create() 30 DeclGroup::DeclGroup(unsigned numdecls, Decl** decls) : NumDecls(numdecls) { in DeclGroup()
|
| HD | DeclPrinter.cpp | 146 void Decl::printGroup(Decl** Begin, unsigned NumDecls, in printGroup() argument 149 if (NumDecls == 1) { in printGroup() 154 Decl** End = Begin + NumDecls; in printGroup()
|
| HD | ASTImporter.cpp | 4579 size_t NumDecls = DG.end() - DG.begin(); in ImportDeclGroup() local 4580 SmallVector<Decl *, 1> ToDecls(NumDecls); in ImportDeclGroup() 4588 NumDecls); in ImportDeclGroup() 5865 unsigned NumDecls) { in HandleNameConflict() argument
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| HD | ASTMatchers.h | 2523 const unsigned NumDecls = std::distance(Node.decl_begin(), Node.decl_end()); in AST_MATCHER_P2() local 2524 if (N >= NumDecls) in AST_MATCHER_P2()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 956 unsigned NumDecls = endian::readNext<uint16_t, little, unaligned>(d); in ReadData() local 959 return std::make_pair(Start, Start + NumDecls); in ReadData() 7698 unsigned NumDecls = Record[Idx++]; in ReadUnresolvedSet() local 7699 Set.reserve(Context, NumDecls); in ReadUnresolvedSet() 7700 while (NumDecls--) { in ReadUnresolvedSet()
|
| HD | ASTReaderStmt.cpp | 1468 unsigned NumDecls = Record[Idx++]; in VisitOverloadExpr() local 1470 for (unsigned i = 0; i != NumDecls; ++i) { in VisitOverloadExpr()
|