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

  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2DynamicTree.h 30 bool IsLeaf() const
186 if (node->IsLeaf())
257 if (node->IsLeaf())
b2DynamicTree.cpp 127 b2Assert(m_nodes[proxyId].IsLeaf());
137 b2Assert(m_nodes[proxyId].IsLeaf());
193 while (m_nodes[index].IsLeaf() == false)
212 if (m_nodes[child1].IsLeaf())
229 if (m_nodes[child2].IsLeaf())
385 if (A->IsLeaf() || A->height < 2)
566 if (node->IsLeaf())
599 if (node->IsLeaf())
629 if (node->IsLeaf())
686 b2Assert(node->IsLeaf() == false)
    [all...]
  /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; }
120 /// DeltaTreeInteriorNode - When isLeaf = false, a node has child pointers.
150 static inline bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); }
157 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; }
223 return N->isLeaf();
459 return !N->isLeaf();

Completed in 212 milliseconds