Lines Matching refs:ASTDiff
57 class ASTDiff::Impl {
560 const ASTDiff::Impl &DiffImpl;
566 ZhangShashaMatcher(const ASTDiff::Impl &DiffImpl, const SyntaxTree::Impl &T1, in ZhangShashaMatcher()
757 bool ASTDiff::Impl::identical(NodeId Id1, NodeId Id2) const { in identical()
770 bool ASTDiff::Impl::isMatchingPossible(NodeId Id1, NodeId Id2) const { in isMatchingPossible()
774 bool ASTDiff::Impl::haveSameParents(const Mapping &M, NodeId Id1, in haveSameParents()
782 void ASTDiff::Impl::addOptimalMapping(Mapping &M, NodeId Id1, in addOptimalMapping()
797 double ASTDiff::Impl::getJaccardSimilarity(const Mapping &M, NodeId Id1, in getJaccardSimilarity()
816 NodeId ASTDiff::Impl::findCandidate(const Mapping &M, NodeId Id1) const { in findCandidate()
833 void ASTDiff::Impl::matchBottomUp(Mapping &M) const { in matchBottomUp()
858 Mapping ASTDiff::Impl::matchTopDown() const { in matchTopDown()
903 ASTDiff::Impl::Impl(SyntaxTree::Impl &T1, SyntaxTree::Impl &T2, in Impl()
910 void ASTDiff::Impl::computeMapping() { in computeMapping()
917 void ASTDiff::Impl::computeChangeKinds(Mapping &M) { in computeChangeKinds()
960 ASTDiff::ASTDiff(SyntaxTree &T1, SyntaxTree &T2, in ASTDiff() function in clang::diff::ASTDiff
964 ASTDiff::~ASTDiff() = default;
966 NodeId ASTDiff::getMapped(const SyntaxTree &SourceTree, NodeId Id) const { in getMapped()