Lines Matching refs:DeltaTreeInteriorNode
63 friend class DeltaTreeInteriorNode;
123 class DeltaTreeInteriorNode : public DeltaTreeNode { class
128 ~DeltaTreeInteriorNode() { in ~DeltaTreeInteriorNode()
134 DeltaTreeInteriorNode() : DeltaTreeNode(false /*nonleaf*/) {} in DeltaTreeInteriorNode() function in __anon5fc690450111::DeltaTreeInteriorNode
136 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode() function in __anon5fc690450111::DeltaTreeInteriorNode
165 delete cast<DeltaTreeInteriorNode>(this); in Destroy()
174 if (auto *IN = dyn_cast<DeltaTreeInteriorNode>(this)) in RecomputeFullDeltaLocally()
231 auto *IN = cast<DeltaTreeInteriorNode>(this); in DoInsertion()
265 DeltaTreeInteriorNode *InsertSide; in DoInsertion()
267 InsertSide = cast<DeltaTreeInteriorNode>(InsertRes->LHS); in DoInsertion()
269 InsertSide = cast<DeltaTreeInteriorNode>(InsertRes->RHS); in DoInsertion()
308 if (auto *IN = dyn_cast<DeltaTreeInteriorNode>(this)) { in DoSplit()
311 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode(); in DoSplit()
346 const auto *IN = dyn_cast<DeltaTreeInteriorNode>(N); in VerifyTree()
430 const auto *IN = dyn_cast<DeltaTreeInteriorNode>(Node); in getDeltaAt()
461 Root = new DeltaTreeInteriorNode(InsertRes); in AddDelta()