Lines Matching refs:from
44 static void sortBlock(unsigned from, unsigned to, Vector<Vector<Node*> >& parentMatrix, bool mayCon… in sortBlock() argument
46 ASSERT(from + 1 < to); // Should not call this function with less that two nodes to sort. in sortBlock()
48 for (unsigned i = from; i < to; ++i) { in sortBlock()
58 commonAncestor = parentWithDepth(commonAncestorDepth, parentMatrix[from]); in sortBlock()
63 for (unsigned i = from + 1; i < to; ++i) { in sortBlock()
78 for (unsigned i = from; i < to; ++i) in sortBlock()
80 parentMatrix[i].swap(parentMatrix[from]); in sortBlock()
81 if (from + 2 < to) in sortBlock()
82 sortBlock(from + 1, to, parentMatrix, mayContainAttributeNodes); in sortBlock()
92 unsigned sortedEnd = from; in sortBlock()
99 if (sortedEnd != from) { in sortBlock()
109 for (unsigned i = from; i < to; ++i) in sortBlock()
112 unsigned previousGroupEnd = from; in sortBlock()
113 unsigned groupEnd = from; in sortBlock()
177 unsigned from = 0; in reverse() local
179 while (from < to) { in reverse()
180 m_nodes[from].swap(m_nodes[to]); in reverse()
181 ++from; in reverse()