Home | History | Annotate | Download | only in AST

Lines Matching defs:Shadow

923   if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D)) {
924 if (Shadow->getDeclName().getNameKind()
927 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess());
2003 const UsingShadowDecl *Shadow = this;
2005 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
2006 Shadow = NextShadow;
2007 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
2027 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.