Home | History | Annotate | Download | only in LIBXMLPlugin

Lines Matching refs:children

358 			daeElementRefArray children;
359 element->getChildren( children );
361 for ( unsigned int i = 0; i < children.getCount(); i++ )
363 if ( strcmp( children[i]->getTypeName(), "float_array" ) == 0 ||
364 strcmp( children[i]->getTypeName(), "int_array" ) == 0 )
368 else if ( strcmp( children[i]->getTypeName(), "technique_common" ) == 0 )
393 daeElementRefArray children;
394 element->getChildren( children );
395 for ( size_t x = 0; x < children.getCount(); x++ ) {
396 writeElement( children.get(x) );
411 daeMetaElementAttributeArray& children = _meta->getMetaElements();
412 int cnt = (int)children.getCount();
414 daeMetaElement *type = children[i]->getElementType();
416 for (int c = 0; c < children[i]->getCount(element); c++ ) {
417 writeElement( *(daeElementRef*)children[i]->get(element,c) );
476 daeElementRefArray children;
477 newSrc->getChildren( children );
479 for ( int i = 0; i < (int)children.getCount(); i++ )
481 if ( strcmp( children[i]->getTypeName(), "float_array" ) == 0 )
483 array = children[i];
486 else if ( strcmp( children[i]->getTypeName(), "int_array" ) == 0 )
488 array = children[i];
492 else if ( strcmp( children[i]->getTypeName(), "technique_common" ) == 0 )
494 children[i]->getChildren( children );
496 else if ( strcmp( children[i]->getTypeName(), "accessor" ) == 0 )
498 accessor = children[i];
508 children.clear();
509 accessor->getChildren( children );
510 if ( children.getCount() > stride ) {
511 *stridePtr = children.getCount();