Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3251 void UnresolvedUsingValueDecl::anchor() {} in anchor()
3253 UnresolvedUsingValueDecl *
3254 UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3259 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3264 UnresolvedUsingValueDecl *
3265 UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) { in CreateDeserialized()
3266 return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(), in CreateDeserialized()
3273 SourceRange UnresolvedUsingValueDecl::getSourceRange() const { in getSourceRange()
H A DDeclPrinter.cpp101 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1741 void DeclPrinter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DComputeDependence.cpp808 isa<UnresolvedUsingValueDecl>(D)) in computeDependence()
H A DDecl.cpp1872 if (const auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) { in declarationReplaces()
1876 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier()); in declarationReplaces()
H A DExprCXX.cpp1583 if (isa<UnresolvedUsingValueDecl>(decl)) in hasOnlyNonStaticMemberFunctions()
H A DTextNodeDumper.cpp2640 const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DASTContext.cpp1525 isa<UnresolvedUsingValueDecl>(Pattern) || in setInstantiatedFromUsingDecl()
1529 isa<UnresolvedUsingValueDecl>(Inst) || in setInstantiatedFromUsingDecl()
7152 if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) { in isSameEntity()
7153 const auto *UY = cast<UnresolvedUsingValueDecl>(Y); in isSameEntity()
9627 isa<UnresolvedUsingValueDecl>(D) || in getOverloadedTemplateName()
H A DASTImporter.cpp506 ExpectedDecl VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
5340 UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
5362 UnresolvedUsingValueDecl *ToUsingValue; in VisitUnresolvedUsingValueDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3868 class UnresolvedUsingValueDecl : public ValueDecl,
3869 public Mergeable<UnresolvedUsingValueDecl> {
3883 UnresolvedUsingValueDecl(DeclContext *DC, QualType Ty, in UnresolvedUsingValueDecl() function
3931 static UnresolvedUsingValueDecl *
3936 static UnresolvedUsingValueDecl *CreateDeserialized(ASTContext &C,
3942 UnresolvedUsingValueDecl *getCanonicalDecl() override { in getCanonicalDecl()
3945 const UnresolvedUsingValueDecl *getCanonicalDecl() const { in getCanonicalDecl()
H A DTextNodeDumper.h387 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
H A DRecursiveASTVisitor.h2118 DEF_TRAVERSE_DECL(UnresolvedUsingValueDecl, {
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp106 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
1083 void USRGenerator::VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DIndexDecl.cpp642 bool VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h784 if (isa<UnresolvedUsingValueDecl>((*I)->getUnderlyingDecl())) in checkUnresolved()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp203 bool TraverseUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in TraverseUnresolvedUsingValueDecl()
H A DSemaLookup.cpp481 isa<UnresolvedUsingValueDecl>(D); in canHideTag()
501 else if (isa<UnresolvedUsingValueDecl>(D)) in resolveKind()
593 if (isa<UnresolvedUsingValueDecl>(D)) { in resolveKind()
H A DSemaTemplate.cpp144 if (AllowDependent && isa<UnresolvedUsingValueDecl>(D)) in getAsTemplateNameDecl()
286 if (isa<UnresolvedUsingValueDecl>(D)) { in isTemplateName()
10536 if (UnresolvedUsingValueDecl *Using in CheckTypenameType()
10537 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){ in CheckTypenameType()
H A DSemaDeclCXX.cpp6879 if (((isa<FieldDecl>(D) || isa<UnresolvedUsingValueDecl>(D)) && in CheckCompletedCXXClass()
12425 !isa<UnresolvedUsingValueDecl>(Target) && in CheckUsingShadowDecl()
12787 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
13023 assert(isa<UnresolvedUsingValueDecl>(InstantiatedFrom) || in BuildUsingPackDecl()
13085 isa<UnresolvedUsingValueDecl>(D) || isa<EnumConstantDecl>(D); in CheckUsingDeclRedeclaration()
13108 } else if (UnresolvedUsingValueDecl *UD in CheckUsingDeclRedeclaration()
13109 = dyn_cast<UnresolvedUsingValueDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DSemaTemplateInstantiateDecl.cpp3563 UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
5996 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D)) in isInstantiationOf()
H A DSemaDeclAttr.cpp2245 if (isa<UsingDecl, UnresolvedUsingTypenameDecl, UnresolvedUsingValueDecl>( in handleAvailabilityAttr()
5735 UnresolvedUsingValueDecl>(D)) { in handleDeprecatedAttr()
H A DSemaCodeComplete.cpp2800 } else if (isa<UnresolvedUsingValueDecl>(ND)) { in AddResultTypeChunk()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp369 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1936 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
3907 D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp90 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1473 void ASTDeclWriter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1566 bool WalkUpFromUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *S) { in WalkUpFromUnresolvedUsingValueDecl()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1834 UnresolvedUsingValueDecl>

12