Home | History | Annotate | Download | only in ui

Lines Matching refs:_children

38     this._children = [];
86 return this._children;
122 var copy = this._children.slice();
220 this._parentView._children.push(this);
285 var childIndex = this._parentView._children.indexOf(this);
287 this._parentView._children.splice(childIndex, 1);
298 var children = this._children.slice();
412 lines.push(prefix + "[" + this.element.className + "]" + (this._children.length ? " {" : ""));
414 for (var i = 0; i < this._children.length; ++i)
415 this._children[i]._collectViewHierarchy(prefix + " ", lines);
417 if (this._children.length)