Home
last modified time | relevance | path

Searched refs:MSGuidDecl (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp133 if (isa<MSGuidDecl>(D)) in shouldMangleDeclName()
176 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in mangleName()
244 void MangleContext::mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream &Out) { in mangleMSGuidDecl()
247 MSGuidDecl::Parts P = GD->getParts(); in mangleMSGuidDecl()
H A DDeclCXX.cpp3398 void MSGuidDecl::anchor() {} in anchor()
3400 MSGuidDecl::MSGuidDecl(DeclContext *DC, QualType T, Parts P) in MSGuidDecl() function in MSGuidDecl
3404 MSGuidDecl *MSGuidDecl::Create(const ASTContext &C, QualType T, Parts P) { in Create()
3406 return new (C, DC) MSGuidDecl(DC, T, P); in Create()
3409 MSGuidDecl *MSGuidDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3410 return new (C, ID) MSGuidDecl(nullptr, QualType(), Parts()); in CreateDeserialized()
3413 void MSGuidDecl::printName(llvm::raw_ostream &OS, in printName()
3473 APValue &MSGuidDecl::getAsAPValue() const { in getAsAPValue()
H A DExprClassification.cpp482 isa<VarDecl, FieldDecl, IndirectFieldDecl, BindingDecl, MSGuidDecl, in ClassifyDecl()
H A DMicrosoftMangle.cpp571 else if (isa<MSGuidDecl>(D)) in mangle()
1079 if (const MSGuidDecl *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
H A DASTContext.cpp12258 MSGuidDecl *
12259 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const { in getMSGuidDecl()
12263 MSGuidDecl::Profile(ID, Parts); in getMSGuidDecl()
12266 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) in getMSGuidDecl()
12270 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); in getMSGuidDecl()
H A DItaniumMangle.cpp823 else if (isa<VarDecl, FieldDecl, MSGuidDecl, TemplateParamObjectDecl, in mangle()
1503 if (auto *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
H A DDecl.cpp889 } else if (isa<MSGuidDecl>(D)) { in getLVForNamespaceScopeDecl()
H A DExprConstant.cpp2061 return isa<FunctionDecl, MSGuidDecl, UnnamedGlobalConstantDecl>(D); in IsGlobalLValue()
4077 if (auto *GD = dyn_cast<MSGuidDecl>(D)) { in findCompleteObject()
8494 if (isa<FunctionDecl, MSGuidDecl, TemplateParamObjectDecl, in VisitDeclRefExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DMangle.h146 virtual void mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream&);
H A DDeclCXX.h4280 class MSGuidDecl : public ValueDecl,
4281 public Mergeable<MSGuidDecl>,
4296 MSGuidDecl(DeclContext *DC, QualType T, Parts P);
4298 static MSGuidDecl *Create(const ASTContext &C, QualType T, Parts P);
4299 static MSGuidDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DExprCXX.h1067 MSGuidDecl *Guid;
1071 CXXUuidofExpr(QualType Ty, TypeSourceInfo *Operand, MSGuidDecl *Guid, in CXXUuidofExpr()
1078 CXXUuidofExpr(QualType Ty, Expr *Operand, MSGuidDecl *Guid, SourceRange R) in CXXUuidofExpr()
1108 MSGuidDecl *getGuidDecl() const { return Guid; } in getGuidDecl()
H A DASTContext.h296 mutable llvm::FoldingSet<MSGuidDecl> MSGuidDecls;
3137 MSGuidDecl *getMSGuidDecl(MSGuidDeclParts Parts) const;
H A DRecursiveASTVisitor.h2094 DEF_TRAVERSE_DECL(MSGuidDecl, {})
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp173 void VisitMSGuidDecl(const MSGuidDecl *D);
1093 void USRGenerator::VisitMSGuidDecl(const MSGuidDecl *D) { in VisitMSGuidDecl()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp97 void VisitMSGuidDecl(MSGuidDecl *D);
1033 void ASTDeclWriter::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()
1035 MSGuidDecl::Parts Parts = D->getParts(); in VisitMSGuidDecl()
H A DASTReaderDecl.cpp384 void VisitMSGuidDecl(MSGuidDecl *D);
1557 void ASTDeclReader::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()
1566 if (MSGuidDecl *Existing = Reader.getContext().MSGuidDecls.GetOrInsertNode(D)) in VisitMSGuidDecl()
4043 D = MSGuidDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTReaderStmt.cpp2307 E->Guid = readDeclAs<MSGuidDecl>(); in VisitCXXUuidofExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.h950 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD);
H A DCGExprConstant.cpp1959 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in tryEmitBase()
H A DCodeGenModule.cpp3529 ConstantAddress CodeGenModule::GetAddrOfMSGuidDecl(const MSGuidDecl *GD) { in GetAddrOfMSGuidDecl()
3553 MSGuidDecl::Parts Parts = GD->getParts(); in GetAddrOfMSGuidDecl()
H A DCGDebugInfo.cpp2170 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) { in CollectTemplateParams()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp752 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof()
770 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof()
774 Guid = Context.getMSGuidDecl(MSGuidDecl::Parts{}); in BuildCXXUuidof()
H A DSemaDeclAttr.cpp7073 StringRef UuidAsWritten, MSGuidDecl *GuidDecl) { in mergeUuidAttr()
7124 MSGuidDecl::Parts Parsed; in handleUuidAttr()
7131 MSGuidDecl *Guid = S.Context.getMSGuidDecl(Parsed); in handleUuidAttr()
H A DSemaTemplate.cpp6969 MSGuidDecl *Guid = dyn_cast<MSGuidDecl>(Entity); in CheckTemplateArgumentAddressOfObjectOrFunction()
H A DSemaTemplateInstantiateDecl.cpp939 Decl *TemplateDeclInstantiator::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()

12