Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
DTree.cpp85 if (this->LastChild) { in appendChildLowLevel()
86 Child->PreviousSibling = this->LastChild; in appendChildLowLevel()
87 this->LastChild->NextSibling = Child; in appendChildLowLevel()
91 this->LastChild = Child; in appendChildLowLevel()
113 this->LastChild = Child; in prependChildLowLevel()
153 auto *BeforeBegin = Begin ? Begin->PreviousSibling : LastChild; in replaceChildRangeLowLevel()
171 auto *&NewLast = End ? End->PreviousSibling : LastChild; in replaceChildRangeLowLevel()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
DTree.h203 Node *getLastChild() { return LastChild; } in getLastChild()
204 const Node *getLastChild() const { return LastChild; } in getLastChild()
269 Node *LastChild = nullptr; variable