Lines Matching refs:children
112 * Finds the last index into the array of children of the name specified.
114 * @return Returns the index into the children array of the last element with name elementName. -1 if
115 * there are no children of name elementName.
451 * Gets the children/sub-elements of this element.
452 * This is a helper function used to easily access an element's children without the use of the
455 * @return The return value. An elementref array to append this element's children to.
462 * @param array The return value. An elementref array to append this element's children to.
468 * Gets all the children of a particular type.
486 daeTArray< daeSmartRef<daeElement> > children;
487 getChildren(children);
488 for (size_t i = 0; i < children.getCount(); i++)
489 if (children[i]->typeID() == T::ID())
490 matchingChildren.append((T*)children[i].cast());
513 bool childCountMismatch; // true if the number of children didn't match