Home
last modified time | relevance | path

Searched refs:findLastLeaf (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/include/clang/Tooling/Syntax/
DTree.h211 const Leaf *findLastLeaf() const;
212 Leaf *findLastLeaf() { in findLastLeaf() function
213 return const_cast<Leaf *>(const_cast<const Tree *>(this)->findLastLeaf()); in findLastLeaf()
/external/llvm-project/clang/lib/Tooling/Syntax/
DTree.cpp322 const syntax::Leaf *syntax::Tree::findLastLeaf() const { in findLastLeaf() function in syntax::Tree
326 if (const auto *L = cast<syntax::Tree>(C)->findLastLeaf()) in findLastLeaf()
/external/llvm-project/clang/unittests/Tooling/Syntax/
DTreeTest.cpp124 ASSERT_TRUE(Tree->findLastLeaf() != nullptr); in TEST_P()
125 EXPECT_EQ(Tree->findLastLeaf()->getToken()->kind(), tok::r_paren); in TEST_P()
DTreeTestBase.cpp44 T->findLastLeaf()->getToken() + 1); in tokens()