Lines Matching refs:children

1846       this.children  = [];
1866 for(var i = 0; i < this.children.length; i++)
1868 this.children[i].disableStyle();
1873 for(var i = 0; i < this.children.length; i++)
1875 this.children[i].enableStyle();
2008 for (var i = 0; i < this.children.length; i++) {
2009 this.children[i].draw();
2107 return this.children[child];
2124 for(i = 0; i < this.children.lenth; i++)
2126 found = this.children[i].getChild(child);
2134 return this.children.length;
2137 this.children.push(child);
2417 var children = new p.PShape();
2421 children.addChild(kid);
2424 this.children.push(children);
3187 this.children = [];
3207 this.children = [];
3219 this.children = [];
3231 this.children = [];
3294 if (this.children.length !== object.getChildCount()) { return false; }
3296 for (i = 0; i < this.children.length; i++) {
3353 return this.children.length > 0 ;
3358 this.children.push(child);
3364 var lastChild = this.children[this.children.length -1];
3371 this.children.splice(index,0,child);
3376 return this.children[index];
3411 return this.children;
3415 return this.children.length;
3467 …xmlelement.children.push( xmlelement.parseChildrenRecursive(xmlelement, elementpath.childNodes[nod…
3477 for (var i = 0; i < this.children.length; i++) {
3492 for (var i = 0; i < this.children.length; i++) {
3493 if (this.children[i].equalsXMLElement(child)) {
3494 this.children.splice(i, 0);
3500 if (this.children.length > index) { //make sure its not outofbounds
3501 this.children.splice(index, 0);
5718 var children = node.childNodes,
5719 child = children.length;
5722 node.removeChild(children.item(0));