Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3130 if (FirstUsingShadow.getPointer()) in addShadowDecl()
3131 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); in addShadowDecl()
3132 FirstUsingShadow.setPointer(S); in addShadowDecl()
3141 if (FirstUsingShadow.getPointer() == S) { in removeShadowDecl()
3142 FirstUsingShadow.setPointer( in removeShadowDecl()
3148 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); in removeShadowDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3416 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable
3420 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl()
3427 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag()
3430 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag()
3481 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1374 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingDecl()
1385 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingEnumDecl()
H A DASTReaderDecl.cpp1893 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingDecl()
1905 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingEnumDecl()