Lines Matching refs:DeltaTreeInteriorNode
61 friend class DeltaTreeInteriorNode;
122 class DeltaTreeInteriorNode : public DeltaTreeNode { class
124 ~DeltaTreeInteriorNode() { in ~DeltaTreeInteriorNode()
130 DeltaTreeInteriorNode() : DeltaTreeNode(false /*nonleaf*/) {} in DeltaTreeInteriorNode() function in __anona996daa60311::DeltaTreeInteriorNode
132 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode() function in __anona996daa60311::DeltaTreeInteriorNode
160 delete cast<DeltaTreeInteriorNode>(this); in Destroy()
169 if (DeltaTreeInteriorNode *IN = dyn_cast<DeltaTreeInteriorNode>(this)) in RecomputeFullDeltaLocally()
226 DeltaTreeInteriorNode *IN = cast<DeltaTreeInteriorNode>(this); in DoInsertion()
260 DeltaTreeInteriorNode *InsertSide; in DoInsertion()
262 InsertSide = cast<DeltaTreeInteriorNode>(InsertRes->LHS); in DoInsertion()
264 InsertSide = cast<DeltaTreeInteriorNode>(InsertRes->RHS); in DoInsertion()
303 if (DeltaTreeInteriorNode *IN = dyn_cast<DeltaTreeInteriorNode>(this)) { in DoSplit()
306 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode(); in DoSplit()
343 const DeltaTreeInteriorNode *IN = dyn_cast<DeltaTreeInteriorNode>(N); in VerifyTree()
426 const DeltaTreeInteriorNode *IN = dyn_cast<DeltaTreeInteriorNode>(Node); in getDeltaAt()
457 Root = MyRoot = new DeltaTreeInteriorNode(InsertRes); in AddDelta()