Lines Matching refs:IsLeaf
78 /// IsLeaf - This is true if this is a leaf of the btree. If false, this is
80 bool IsLeaf;
87 DeltaTreeNode(bool isLeaf = true) : IsLeaf(isLeaf) {}
89 bool isLeaf() const { return IsLeaf; }
121 /// DeltaTreeInteriorNode - When isLeaf = false, a node has child pointers.
155 static bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); }
162 if (isLeaf())
207 if (isLeaf()) {