Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTree.cpp38 : Parent(nullptr), NextSibling(nullptr), PreviousSibling(nullptr), in Node()
63 assert(Child->PreviousSibling == nullptr); in appendChildLowLevel()
68 Child->PreviousSibling = this->LastChild; in appendChildLowLevel()
87 assert(Child->PreviousSibling == nullptr); in prependChildLowLevel()
93 this->FirstChild->PreviousSibling = Child; in prependChildLowLevel()
135 auto *BeforeBegin = Begin ? Begin->PreviousSibling : LastChild; in replaceChildRangeLowLevel()
144 N->PreviousSibling = nullptr; in replaceChildRangeLowLevel()
153 auto *&NewLast = End ? End->PreviousSibling : LastChild; in replaceChildRangeLowLevel()
161 New->PreviousSibling = BeforeBegin; in replaceChildRangeLowLevel()
H A DMutations.cpp35 assert(New->PreviousSibling == nullptr); in addAfter()
54 assert(New->PreviousSibling == nullptr); in replace()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DTree.h95 const Node *getPreviousSibling() const { return PreviousSibling; } in getPreviousSibling()
96 Node *getPreviousSibling() { return PreviousSibling; } in getPreviousSibling()
123 Node *PreviousSibling; variable