Lines Matching refs:ASTDiff
58 class ASTDiff::Impl {
559 const ASTDiff::Impl &DiffImpl;
565 ZhangShashaMatcher(const ASTDiff::Impl &DiffImpl, const SyntaxTree::Impl &T1, in ZhangShashaMatcher()
756 bool ASTDiff::Impl::identical(NodeId Id1, NodeId Id2) const { in identical()
769 bool ASTDiff::Impl::isMatchingPossible(NodeId Id1, NodeId Id2) const { in isMatchingPossible()
773 bool ASTDiff::Impl::haveSameParents(const Mapping &M, NodeId Id1, in haveSameParents()
781 void ASTDiff::Impl::addOptimalMapping(Mapping &M, NodeId Id1, in addOptimalMapping()
796 double ASTDiff::Impl::getJaccardSimilarity(const Mapping &M, NodeId Id1, in getJaccardSimilarity()
815 NodeId ASTDiff::Impl::findCandidate(const Mapping &M, NodeId Id1) const { in findCandidate()
832 void ASTDiff::Impl::matchBottomUp(Mapping &M) const { in matchBottomUp()
857 Mapping ASTDiff::Impl::matchTopDown() const { in matchTopDown()
902 ASTDiff::Impl::Impl(SyntaxTree::Impl &T1, SyntaxTree::Impl &T2, in Impl()
909 void ASTDiff::Impl::computeMapping() { in computeMapping()
916 void ASTDiff::Impl::computeChangeKinds(Mapping &M) { in computeChangeKinds()
959 ASTDiff::ASTDiff(SyntaxTree &T1, SyntaxTree &T2, in ASTDiff() function in clang::diff::ASTDiff
963 ASTDiff::~ASTDiff() = default;
965 NodeId ASTDiff::getMapped(const SyntaxTree &SourceTree, NodeId Id) const { in getMapped()