Home
last modified time | relevance | path

Searched refs:getNodeValue (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp155 std::string getNodeValue(NodeId Id) const;
156 std::string getNodeValue(const Node &Node) const;
408 std::string SyntaxTree::Impl::getNodeValue(NodeId Id) const { in getNodeValue() function in clang::diff::SyntaxTree::Impl
409 return getNodeValue(getNode(Id)); in getNodeValue()
412 std::string SyntaxTree::Impl::getNodeValue(const Node &N) const { in getNodeValue() function in clang::diff::SyntaxTree::Impl
518 std::string getNodeValue(SNodeId Id) const { in getNodeValue() function in clang::diff::Subtree
519 return Tree.getNodeValue(getIdInRoot(Id)); in getNodeValue()
647 return S1.getNodeValue(Id1) != S2.getNodeValue(Id2); in getUpdateCost()
761 T1.getNodeValue(Id1) != T2.getNodeValue(Id2)) in identical()
953 if (T1.getNodeValue(Id1) != T2.getNodeValue(Id2)) { in computeChangeKinds()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h83 std::string getNodeValue(NodeId Id) const;
84 std::string getNodeValue(const Node &Node) const;
/openbsd-src/gnu/llvm/clang/tools/clang-diff/
H A DClangDiff.cpp295 std::string Value = Tree.getNodeValue(Node); in printHtmlForNode()