Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp3038 if (FirstUsingShadow.getPointer()) in addShadowDecl()
3039 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); in addShadowDecl()
3040 FirstUsingShadow.setPointer(S); in addShadowDecl()
3050 if (FirstUsingShadow.getPointer() == S) { in removeShadowDecl()
3051 FirstUsingShadow.setPointer( in removeShadowDecl()
3057 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); in removeShadowDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h3401 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable
3408 DNLoc(NameInfo.getInfo()), FirstUsingShadow(nullptr, HasTypenameKeyword) { in UsingDecl()
3440 bool hasTypename() const { return FirstUsingShadow.getInt(); } in hasTypename()
3443 void setTypename(bool TN) { FirstUsingShadow.setInt(TN); } in setTypename()
3490 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp1274 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingDecl()
H A DASTReaderDecl.cpp1647 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>()); in VisitUsingDecl()