Lines Matching refs:depth
85 * @attribute depth
90 * @description Number representing the depth of this Widget relative to
93 depth: {
99 depth = -1;
103 depth = (depth + 1);
113 return depth;
283 * @description Returns the Widget instance at the specified depth.
284 * @param {number} depth Number representing the depth of the ancestor.
287 ancestor: function (depth) {
292 if (this.get("depth") > depth) {
296 while (parent != root && parent.get("depth") > depth) {