reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/DeclCXX.h
 3330   bool hasTypename() const { return FirstUsingShadow.getInt(); }
 3333   void setTypename(bool TN) { FirstUsingShadow.setInt(TN); }
 3380     return shadow_iterator(FirstUsingShadow.getPointer());
tools/clang/lib/AST/DeclCXX.cpp
 2854   if (FirstUsingShadow.getPointer())
 2855     S->UsingOrNextShadow = FirstUsingShadow.getPointer();
 2856   FirstUsingShadow.setPointer(S);
 2866   if (FirstUsingShadow.getPointer() == S) {
 2867     FirstUsingShadow.setPointer(
 2873   UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 1594   D->FirstUsingShadow.setPointer(ReadDeclAs<UsingShadowDecl>());
tools/clang/lib/Serialization/ASTWriterDecl.cpp
 1236   Record.AddDeclRef(D->FirstUsingShadow.getPointer());