Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:attrib

589 	const TiXmlAttribute* attrib = attributeSet.Find( name );
590 if ( attrib )
591 return &attrib->ValueStr();
599 const TiXmlAttribute* attrib = attributeSet.Find( name );
602 if ( attrib ) {
603 result = attrib->Value();
605 attrib->QueryIntValue( i );
615 const TiXmlAttribute* attrib = attributeSet.Find( name );
618 if ( attrib ) {
619 result = &attrib->ValueStr();
621 attrib->QueryIntValue( i );
631 const TiXmlAttribute* attrib = attributeSet.Find( name );
634 if ( attrib ) {
635 result = attrib->Value();
637 attrib->QueryDoubleValue( d );
647 const TiXmlAttribute* attrib = attributeSet.Find( name );
650 if ( attrib ) {
651 result = &attrib->ValueStr();
653 attrib->QueryDoubleValue( d );
663 const TiXmlAttribute* attrib = attributeSet.Find( name );
664 if ( !attrib )
666 return attrib->QueryIntValue( ival );
712 const TiXmlAttribute* attrib = attributeSet.Find( name );
713 if ( !attrib )
715 return attrib->QueryIntValue( ival );
722 const TiXmlAttribute* attrib = attributeSet.Find( name );
723 if ( !attrib )
725 return attrib->QueryDoubleValue( dval );
732 const TiXmlAttribute* attrib = attributeSet.Find( name );
733 if ( !attrib )
735 return attrib->QueryDoubleValue( dval );
742 TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
743 if ( attrib ) {
744 attrib->SetIntValue( val );
752 TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
753 if ( attrib ) {
754 attrib->SetIntValue( val );
762 TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
763 if ( attrib ) {
764 attrib->SetDoubleValue( val );
772 TiXmlAttribute* attrib = attributeSet.FindOrCreate( name );
773 if ( attrib ) {
774 attrib->SetDoubleValue( val );
782 TiXmlAttribute* attrib = attributeSet.FindOrCreate( cname );
783 if ( attrib ) {
784 attrib->SetValue( cvalue );
792 TiXmlAttribute* attrib = attributeSet.FindOrCreate( _name );
793 if ( attrib ) {
794 attrib->SetValue( _value );
810 const TiXmlAttribute* attrib;
811 for ( attribattrib; attrib = attrib->Next() )
814 attrib->Print( cfile, depth );
1561 TiXmlAttribute* attrib = Find( _name );
1562 if ( !attrib ) {
1563 attrib = new TiXmlAttribute();
1564 Add( attrib );
1565 attrib->SetName( _name );
1567 return attrib;
1585 TiXmlAttribute* attrib = Find( _name );
1586 if ( !attrib ) {
1587 attrib = new TiXmlAttribute();
1588 Add( attrib );
1589 attrib->SetName( _name );
1591 return attrib;
1772 for( const TiXmlAttribute* attrib = firstAttribute; attrib; attrib = attrib->Next() )
1775 attrib->Print( 0, 0, &buffer );