Home | History | Annotate | Download | only in src

Lines Matching defs:depth

350     // Depth first search
755 int depth = 0;
763 while (depth >= 0) {
764 const int charGroupCount = mStackChildCount[depth];
765 int pos = mStackSiblingPos[depth];
767 int inputIndex = mStackInputIndex[depth];
786 // Save position for this depth, to get back to this once children are done
787 mStackChildCount[depth] = charGroupIndex;
788 mStackSiblingPos[depth] = siblingPos;
789 // Prepare stack values for next depth
790 ++depth;
792 mStackChildCount[depth] =
794 mStackSiblingPos[depth] = childrenPos;
795 mStackInputIndex[depth] = inputIndex;
797 // Go to the next depth level.
798 ++depth;
805 --depth;