Home | History | Annotate | Download | only in AST

Lines Matching refs:Shadow

874   if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
875 if (Shadow->getDeclName().getNameKind()
877 data().Conversions.addDecl(getASTContext(), Shadow, Shadow->getAccess());
1887 const UsingShadowDecl *Shadow = this;
1889 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1890 Shadow = NextShadow;
1891 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
1911 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.