Home
last modified time | relevance | path

Searched refs:FirstUsingShadow (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3386 if (FirstUsingShadow.getPointer()) in addShadowDecl()
3387 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); in addShadowDecl()
3388 FirstUsingShadow.setPointer(S); in addShadowDecl()
3397 if (FirstUsingShadow.getPointer() == S) { in removeShadowDecl()
3398 FirstUsingShadow.setPointer( in removeShadowDecl()
3404 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); in removeShadowDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3493 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable
3497 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl()
3504 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag()
3507 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag()
3558 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1586 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingDecl()
1597 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingEnumDecl()
H A DASTReaderDecl.cpp1901 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingDecl()
1913 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingEnumDecl()