Lines Matching refs:getSize

138   int getSize() const { return Nodes.size(); }  in getSize()  function in clang::diff::SyntaxTree::Impl
141 PreorderIterator end() const { return getSize(); } in end()
145 bool isValidNodeId(NodeId Id) const { return Id >= 0 && Id < getSize(); } in isValidNodeId()
223 N.RightMostDescendant < Tree.getSize() && in PostTraverse()
307 PostorderIds.resize(getSize()); in initTree()
502 int getSize() const { return RootIds.size(); } in getSize() function in clang::diff::Subtree
504 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index."); in getIdInRoot()
511 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index."); in getLeftMostDescendant()
526 LeftMostDescendants.resize(getSize()); in setLeftMostDescendants()
527 for (int I = 0; I < getSize(); ++I) { in setLeftMostDescendants()
543 for (SNodeId I(getSize()); I > 0; --I) { in computeKeyRoots()
569 size_t(S1.getSize()) + 1); in ZhangShashaMatcher()
571 size_t(S1.getSize()) + 1); in ZhangShashaMatcher()
572 for (int I = 0, E = S1.getSize() + 1; I < E; ++I) { in ZhangShashaMatcher()
573 TreeDist[I] = std::make_unique<double[]>(size_t(S2.getSize()) + 1); in ZhangShashaMatcher()
574 ForestDist[I] = std::make_unique<double[]>(size_t(S2.getSize()) + 1); in ZhangShashaMatcher()
586 TreePairs.emplace_back(SNodeId(S1.getSize()), SNodeId(S2.getSize())); in getMatchingNodes()
861 Mapping M(T1.getSize() + T2.getSize()); in matchTopDown()
981 int SyntaxTree::getSize() const { return TreeImpl->getSize(); } in getSize() function in clang::diff::SyntaxTree