Home
last modified time | relevance | path

Searched defs:DependencyChecker (Results 1 – 1 of 1) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaTemplate.cpp1510 struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> { struct
1511 typedef RecursiveASTVisitor<DependencyChecker> super;
1513 unsigned Depth;
1514 bool Match;
1515 SourceLocation MatchLoc;
1517 DependencyChecker(unsigned Depth) : Depth(Depth), Match(false) {} in DependencyChecker() argument
1519 DependencyChecker(TemplateParameterList *Params) : Match(false) { in DependencyChecker() argument
1531 bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) { in Matches()
1540 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { in VisitTemplateTypeParmTypeLoc()
1544 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) { in VisitTemplateTypeParmType()
[all …]