Home
last modified time | relevance | path

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

12

/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DMangle.cpp135 if (isa<MSGuidDecl>(D)) in shouldMangleDeclName()
178 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in mangleName()
236 void MangleContext::mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream &Out) { in mangleMSGuidDecl()
239 MSGuidDecl::Parts P = GD->getParts(); in mangleMSGuidDecl()
H A DDeclCXX.cpp3253 void MSGuidDecl::anchor() {} in anchor()
3255 MSGuidDecl::MSGuidDecl(DeclContext *DC, QualType T, Parts P) in MSGuidDecl() function in MSGuidDecl
3259 MSGuidDecl *MSGuidDecl::Create(const ASTContext &C, QualType T, Parts P) { in Create()
3261 return new (C, DC) MSGuidDecl(DC, T, P); in Create()
3264 MSGuidDecl *MSGuidDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3265 return new (C, ID) MSGuidDecl(nullptr, QualType(), Parts()); in CreateDeserialized()
3268 void MSGuidDecl::printName(llvm::raw_ostream &OS) const { in printName()
3327 APValue &MSGuidDecl::getAsAPValue() const { in getAsAPValue()
H A DExprClassification.cpp462 isa<MSGuidDecl>(D) || in ClassifyDecl()
H A DMicrosoftMangle.cpp550 else if (isa<MSGuidDecl>(D)) in mangle()
986 if (const MSGuidDecl *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
H A DASTContext.cpp11244 MSGuidDecl *
11245 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const { in getMSGuidDecl()
11249 MSGuidDecl::Profile(ID, Parts); in getMSGuidDecl()
11252 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) in getMSGuidDecl()
11256 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); in getMSGuidDecl()
H A DItaniumMangle.cpp736 else if (isa<VarDecl, FieldDecl, MSGuidDecl, TemplateParamObjectDecl, in mangle()
1396 if (auto *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
H A DDecl.cpp895 } else if (isa<MSGuidDecl>(D)) { in getLVForNamespaceScopeDecl()
H A DExprConstant.cpp1982 return isa<FunctionDecl>(D) || isa<MSGuidDecl>(D); in IsGlobalLValue()
3995 if (auto *GD = dyn_cast<MSGuidDecl>(D)) { in findCompleteObject()
8125 if (isa<FunctionDecl, MSGuidDecl, TemplateParamObjectDecl>(D)) in VisitDeclRefExpr()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DMangle.h134 virtual void mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream&);
H A DDeclCXX.h4008 class MSGuidDecl : public ValueDecl,
4009 public Mergeable<MSGuidDecl>,
4024 MSGuidDecl(DeclContext *DC, QualType T, Parts P);
4026 static MSGuidDecl *Create(const ASTContext &C, QualType T, Parts P);
4027 static MSGuidDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DExprCXX.h1061 MSGuidDecl *Guid;
1065 CXXUuidofExpr(QualType Ty, TypeSourceInfo *Operand, MSGuidDecl *Guid, in CXXUuidofExpr()
1072 CXXUuidofExpr(QualType Ty, Expr *Operand, MSGuidDecl *Guid, SourceRange R) in CXXUuidofExpr()
1102 MSGuidDecl *getGuidDecl() const { return Guid; } in getGuidDecl()
H A DASTContext.h292 mutable llvm::FoldingSet<MSGuidDecl> MSGuidDecls;
2935 MSGuidDecl *getMSGuidDecl(MSGuidDeclParts Parts) const;
H A DRecursiveASTVisitor.h1992 DEF_TRAVERSE_DECL(MSGuidDecl, {})
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp97 void VisitMSGuidDecl(MSGuidDecl *D);
957 void ASTDeclWriter::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()
959 MSGuidDecl::Parts Parts = D->getParts(); in VisitMSGuidDecl()
H A DASTReaderDecl.cpp371 void VisitMSGuidDecl(MSGuidDecl *D);
1374 void ASTDeclReader::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()
1383 if (MSGuidDecl *Existing = Reader.getContext().MSGuidDecls.GetOrInsertNode(D)) in VisitMSGuidDecl()
4006 D = MSGuidDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTReaderStmt.cpp2221 E->Guid = readDeclAs<MSGuidDecl>(); in VisitCXXUuidofExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenModule.h888 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD);
H A DCGExprConstant.cpp1906 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in tryEmitBase()
H A DCodeGenModule.cpp2725 ConstantAddress CodeGenModule::GetAddrOfMSGuidDecl(const MSGuidDecl *GD) { in GetAddrOfMSGuidDecl()
2749 MSGuidDecl::Parts Parts = GD->getParts(); in GetAddrOfMSGuidDecl()
H A DCGDebugInfo.cpp1981 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) { in CollectTemplateParams()
H A DCGExpr.cpp2859 if (const auto *GD = dyn_cast<MSGuidDecl>(ND)) in EmitDeclRefLValue()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp720 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof()
738 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof()
742 Guid = Context.getMSGuidDecl(MSGuidDecl::Parts{}); in BuildCXXUuidof()
H A DSemaDeclAttr.cpp6314 StringRef UuidAsWritten, MSGuidDecl *GuidDecl) { in mergeUuidAttr()
6365 MSGuidDecl::Parts Parsed; in handleUuidAttr()
6372 MSGuidDecl *Guid = S.Context.getMSGuidDecl(Parsed); in handleUuidAttr()
H A DSemaTemplate.cpp6554 MSGuidDecl *Guid = dyn_cast<MSGuidDecl>(Entity); in CheckTemplateArgumentAddressOfObjectOrFunction()
H A DSemaTemplateInstantiateDecl.cpp807 Decl *TemplateDeclInstantiator::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()

12