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.cpp3161 if (FirstUsingShadow.getPointer()) in addShadowDecl()
3162 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); in addShadowDecl()
3163 FirstUsingShadow.setPointer(S); in addShadowDecl()
3172 if (FirstUsingShadow.getPointer() == S) { in removeShadowDecl()
3173 FirstUsingShadow.setPointer( in removeShadowDecl()
3179 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); in removeShadowDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3430 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable
3434 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl()
3441 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag()
3444 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag()
3495 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp1412 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingDecl()
1423 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingEnumDecl()
H A DASTReaderDecl.cpp1880 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingDecl()
1892 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingEnumDecl()