/external/llvm-project/clang/lib/AST/ |
D | Mangle.cpp | 129 if (isa<MSGuidDecl>(D)) in shouldMangleDeclName() 163 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in mangleName() 222 void MangleContext::mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream &Out) { in mangleMSGuidDecl() 225 MSGuidDecl::Parts P = GD->getParts(); in mangleMSGuidDecl()
|
D | DeclCXX.cpp | 3240 void MSGuidDecl::anchor() {} in anchor() 3242 MSGuidDecl::MSGuidDecl(DeclContext *DC, QualType T, Parts P) in MSGuidDecl() function in MSGuidDecl 3246 MSGuidDecl *MSGuidDecl::Create(const ASTContext &C, QualType T, Parts P) { in Create() 3248 return new (C, DC) MSGuidDecl(DC, T, P); in Create() 3251 MSGuidDecl *MSGuidDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3252 return new (C, ID) MSGuidDecl(nullptr, QualType(), Parts()); in CreateDeserialized() 3255 void MSGuidDecl::printName(llvm::raw_ostream &OS) const { in printName() 3314 APValue &MSGuidDecl::getAsAPValue() const { in getAsAPValue()
|
D | ExprClassification.cpp | 462 isa<MSGuidDecl>(D) || in ClassifyDecl()
|
D | MicrosoftMangle.cpp | 509 else if (isa<MSGuidDecl>(D)) in mangle() 945 if (const MSGuidDecl *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
|
D | ASTContext.cpp | 11051 MSGuidDecl * 11052 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const { in getMSGuidDecl() 11056 MSGuidDecl::Profile(ID, Parts); in getMSGuidDecl() 11059 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) in getMSGuidDecl() 11063 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); in getMSGuidDecl()
|
D | ItaniumMangle.cpp | 655 else if (isa<VarDecl, FieldDecl, MSGuidDecl, TemplateParamObjectDecl, in mangle() 1294 if (auto *GD = dyn_cast<MSGuidDecl>(ND)) { in mangleUnqualifiedName()
|
D | Decl.cpp | 895 } else if (isa<MSGuidDecl>(D)) { in getLVForNamespaceScopeDecl()
|
D | ExprConstant.cpp | 1976 return isa<FunctionDecl>(D) || isa<MSGuidDecl>(D); in IsGlobalLValue() 3990 if (auto *GD = dyn_cast<MSGuidDecl>(D)) { in findCompleteObject() 8114 if (isa<FunctionDecl, MSGuidDecl, TemplateParamObjectDecl>(D)) in VisitDeclRefExpr()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Mangle.h | 114 virtual void mangleMSGuidDecl(const MSGuidDecl *GD, raw_ostream&);
|
D | DeclCXX.h | 3987 class MSGuidDecl : public ValueDecl, 3988 public Mergeable<MSGuidDecl>, 4003 MSGuidDecl(DeclContext *DC, QualType T, Parts P); 4005 static MSGuidDecl *Create(const ASTContext &C, QualType T, Parts P); 4006 static MSGuidDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
D | ExprCXX.h | 1051 MSGuidDecl *Guid; 1055 CXXUuidofExpr(QualType Ty, TypeSourceInfo *Operand, MSGuidDecl *Guid, in CXXUuidofExpr() 1062 CXXUuidofExpr(QualType Ty, Expr *Operand, MSGuidDecl *Guid, SourceRange R) in CXXUuidofExpr() 1092 MSGuidDecl *getGuidDecl() const { return Guid; } in getGuidDecl()
|
D | ASTContext.h | 289 mutable llvm::FoldingSet<MSGuidDecl> MSGuidDecls; 2886 MSGuidDecl *getMSGuidDecl(MSGuidDeclParts Parts) const;
|
D | RecursiveASTVisitor.h | 1972 DEF_TRAVERSE_DECL(MSGuidDecl, {})
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 98 void VisitMSGuidDecl(MSGuidDecl *D); 957 void ASTDeclWriter::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl() 959 MSGuidDecl::Parts Parts = D->getParts(); in VisitMSGuidDecl()
|
D | ASTReaderDecl.cpp | 371 void VisitMSGuidDecl(MSGuidDecl *D); 1374 void ASTDeclReader::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl() 1383 if (MSGuidDecl *Existing = Reader.getContext().MSGuidDecls.GetOrInsertNode(D)) in VisitMSGuidDecl() 4004 D = MSGuidDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
D | ASTReaderStmt.cpp | 2220 E->Guid = readDeclAs<MSGuidDecl>(); in VisitCXXUuidofExpr()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenModule.h | 865 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD);
|
D | CGExprConstant.cpp | 1905 if (auto *GD = dyn_cast<MSGuidDecl>(D)) in tryEmitBase()
|
D | CodeGenModule.cpp | 2588 ConstantAddress CodeGenModule::GetAddrOfMSGuidDecl(const MSGuidDecl *GD) { in GetAddrOfMSGuidDecl() 2612 MSGuidDecl::Parts Parts = GD->getParts(); in GetAddrOfMSGuidDecl()
|
D | CGDebugInfo.cpp | 1921 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) { in CollectTemplateParams()
|
D | CGExpr.cpp | 2850 if (const auto *GD = dyn_cast<MSGuidDecl>(ND)) in EmitDeclRefLValue()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 720 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof() 738 MSGuidDecl *Guid = nullptr; in BuildCXXUuidof() 742 Guid = Context.getMSGuidDecl(MSGuidDecl::Parts{}); in BuildCXXUuidof()
|
D | SemaDeclAttr.cpp | 6124 StringRef UuidAsWritten, MSGuidDecl *GuidDecl) { in mergeUuidAttr() 6175 MSGuidDecl::Parts Parsed; in handleUuidAttr() 6182 MSGuidDecl *Guid = S.Context.getMSGuidDecl(Parsed); in handleUuidAttr()
|
D | SemaTemplate.cpp | 6564 MSGuidDecl *Guid = dyn_cast<MSGuidDecl>(Entity); in CheckTemplateArgumentAddressOfObjectOrFunction()
|
D | SemaTemplateInstantiateDecl.cpp | 776 Decl *TemplateDeclInstantiator::VisitMSGuidDecl(MSGuidDecl *D) { in VisitMSGuidDecl()
|