Lines Matching refs:depth
542 function parseColumns(depth, currentDefinitions, parent) {
550 depth++;
552 // Create corresponding dom node if not already there for this depth
553 if(!tree[depth]) {
554 tree[depth] = [];
557 // Parse each node at this depth for attributes and any children
588 if(!tree[depth+1]) {
589 tree[depth+1] = [];
591 parseColumns(depth, currentChildren, column);
602 tree[depth].push(column);
604 depth--;
725 // Calculate the max depth of descendants for this row
747 // No children, is it the max depth?
756 // Count max row depth for each row