Home
last modified time | relevance | path

Searched refs:DeclsTy (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DUnresolvedSet.h63 using DeclsTy = SmallVectorImpl<DeclAccessPair>; variable
103 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I) in replace()
147 DeclsTy &decls() { in decls()
148 return *reinterpret_cast<DeclsTy*>(this); in decls()
150 const DeclsTy &decls() const { in decls()
151 return *reinterpret_cast<const DeclsTy*>(this); in decls()
H A DASTUnresolvedSet.h33 struct DeclsTy : ASTVector<DeclAccessPair> { struct
34 DeclsTy() = default;
35 DeclsTy(ASTContext &C, unsigned N) : ASTVector<DeclAccessPair>(C, N) {} in DeclsTy() function
41 DeclsTy Decls; argument
68 for (DeclsTy::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) { in replace()