Searched refs:ShadowedDecl (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 6702 NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous); in ActOnTypedefNameDecl() local 6716 if (ShadowedDecl && !Redeclaration) in ActOnTypedefNameDecl() 6717 CheckShadow(NewTD, ShadowedDecl, Previous); in ActOnTypedefNameDecl() 7943 NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty() in ActOnVariableDeclarator() local 8030 if (!IsPlaceholderVariable && ShadowedDecl && !D.isRedeclaration()) in ActOnVariableDeclarator() 8031 CheckShadow(NewVD, ShadowedDecl, Previous); in ActOnVariableDeclarator() 8103 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl, in computeShadowedDeclKind() argument 8105 if (isa<TypeAliasDecl>(ShadowedDecl)) in computeShadowedDeclKind() 8107 else if (isa<TypedefDecl>(ShadowedDecl)) in computeShadowedDeclKind() 8109 else if (isa<BindingDecl>(ShadowedDecl)) in computeShadowedDeclKind() [all …]
|
| H A D | SemaDeclCXX.cpp | 899 NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty() in ActOnDecompositionDeclarator() local 926 } else if (ShadowedDecl && !D.isRedeclaration()) { in ActOnDecompositionDeclarator() 927 CheckShadow(BD, ShadowedDecl, Previous); in ActOnDecompositionDeclarator()
|
| /src/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 946 const NamedDecl *ShadowedDecl; member
|
| H A D | Sema.h | 3488 void CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
|