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

References

tools/clang/lib/Serialization/ASTWriterDecl.cpp
  834   VisitNamedDecl(D);
  835   Record.AddSourceLocation(D->getAtLoc());
  836   Record.AddSourceLocation(D->getLParenLoc());
  837   Record.AddTypeRef(D->getType());
  838   Record.AddTypeSourceInfo(D->getTypeSourceInfo());
  840   Record.push_back((unsigned)D->getPropertyAttributes());
  841   Record.push_back((unsigned)D->getPropertyAttributesAsWritten());
  843   Record.push_back((unsigned)D->getPropertyImplementation());
  844   Record.AddDeclarationName(D->getGetterName());
  845   Record.AddSourceLocation(D->getGetterNameLoc());
  846   Record.AddDeclarationName(D->getSetterName());
  847   Record.AddSourceLocation(D->getSetterNameLoc());
  848   Record.AddDeclRef(D->getGetterMethodDecl());
  849   Record.AddDeclRef(D->getSetterMethodDecl());
  850   Record.AddDeclRef(D->getPropertyIvarDecl());