HomeSort by relevance Sort by last modified time
    Searched refs:IsLeaf (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Rewrite/
DeltaTree.cpp 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())
    [all...]
RewriteRope.cpp 87 /// IsLeaf - True if this is an instance of RopePieceBTreeLeaf, false if it
89 bool IsLeaf;
91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
95 bool isLeaf() const { return IsLeaf; }
226 return N->isLeaf();
463 return !N->isLeaf();

Completed in 75 milliseconds