Lines Matching refs:children
150 // Notify our children
156 // children of this element.
438 daeElementRefArray children;
439 _meta->getChildren( this, children );
440 for ( size_t x = 0; x < children.getCount(); x++ ) {
441 ret->placeElement( children.get(x)->clone( idSuffix, nameSuffix ) );
590 // Compare children
626 // Compare children
679 daeElementRefArray children;
680 getChildren(children);
681 for (size_t i = 0; i < children.getCount(); i++)
682 if (matcher(children[i]))
683 return children[i];
697 // Append the element's children to the queue
698 daeElementRefArray children;
699 elts[i]->getChildren(children);
701 elts.setCount(elts.getCount() + children.getCount());
702 for (size_t j = 0; j < children.getCount(); j++)
703 elts[oldCount + j] = children[j];