Home | History | Annotate | Download | only in AST

Lines Matching refs:UsingShadowDecl

924   if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D)) {
2064 void UsingShadowDecl::anchor() { }
2066 UsingShadowDecl *
2067 UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2068 return new (C, ID) UsingShadowDecl(C, nullptr, SourceLocation(),
2072 UsingDecl *UsingShadowDecl::getUsingDecl() const {
2073 const UsingShadowDecl *Shadow = this;
2074 while (const UsingShadowDecl *NextShadow =
2075 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
2082 void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
2092 void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
2101 dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow));
2106 UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
2108 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);