Lines Matching refs:depth
139 function parseColumns(depth, currentDefinitions, parent) {
147 depth++;
149 // Create corresponding dom node if not already there for this depth
150 if(!tree[depth]) {
151 tree[depth] = [];
154 // Parse each node at this depth for attributes and any children
185 if(!tree[depth+1]) {
186 tree[depth+1] = [];
188 parseColumns(depth, currentChildren, column);
199 tree[depth].push(column);
201 depth--;
322 // Calculate the max depth of descendants for this row
344 // No children, is it the max depth?
353 // Count max row depth for each row