Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:isLeaf

77     /// IsLeaf - This is true if this is a leaf of the btree.  If false, this is
79 bool IsLeaf;
85 DeltaTreeNode(bool isLeaf = true)
86 : NumValuesUsed(0), IsLeaf(isLeaf), FullDelta(0) {}
88 bool isLeaf() const { return IsLeaf; }
122 /// DeltaTreeInteriorNode - When isLeaf = false, a node has child pointers.
153 static inline bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); }
160 if (isLeaf())
205 if (isLeaf()) {