Home
last modified time | relevance | path

Searched refs:ConstChildIterator (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/clang/include/clang/Tooling/Syntax/
DTree.h220 struct ConstChildIterator struct
221 : ChildIteratorBase<ConstChildIterator, const Node> {
223 ConstChildIterator() = default;
224 ConstChildIterator(const ChildIterator &I) : Base(I.asPointer()) {} in ConstChildIterator() function
230 llvm::iterator_range<ConstChildIterator> getChildren() const { in getChildren()
231 return {ConstChildIterator(getFirstChild()), ConstChildIterator()}; in getChildren()
275 inline bool operator==(const Tree::ConstChildIterator &A,
276 const Tree::ConstChildIterator &B) {
/external/llvm-project/clang/unittests/Tooling/Syntax/
DTreeTest.cpp172 EXPECT_EQ(CIt, Tree::ConstChildIterator()); in TEST_F()