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

References

tools/clang/lib/AST/DeclTemplate.cpp
  190   if (Common)
  191     return Common;
  198     if (Prev->Common) {
  199       Common = Prev->Common;
  199       Common = Prev->Common;
  207   if (!Common) {
  211     Common = newCommon(getASTContext());
  216     Prev->Common = Common;
  216     Prev->Common = Common;
  218   return Common;
  345   if (!Base::Common)
  348   Common *ThisCommon = static_cast<Common *>(Base::Common);
  352     if (Prev->Base::Common) {
  353       PrevCommon = static_cast<Common *>(Prev->Base::Common);
  363       D->Base::Common = ThisCommon;
  371   Base::Common = PrevCommon;
tools/clang/lib/Serialization/ASTReader.cpp
 9999       cast<RedeclarableTemplateDecl>(R)->Common = RTD->Common;
 9999       cast<RedeclarableTemplateDecl>(R)->Common = RTD->Common;
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 2022   if (!CanonD->Common) {
 2023     CanonD->Common = CanonD->newCommon(Reader.getContext());
 2026   D->Common = CanonD->Common;
 2026   D->Common = CanonD->Common;
 2048   D->Common = D->getCanonicalDecl()->Common;
 2048   D->Common = D->getCanonicalDecl()->Common;