Lines Matching refs:pAttributes

755 				pAttributes     ( NULL ),  in XMLElement()
765 if ( obj.pAttributes ){ in XMLElement()
766 pAttributes = new XMLAttributeList(); in XMLElement()
767 for ( sal_uLong i = 0; i < obj.pAttributes->Count(); i++ ) in XMLElement()
768 AddAttribute( *obj.pAttributes->GetObject( i ) , obj.pAttributes->GetObject( i )->GetValue() ); in XMLElement()
786 if ( pAttributes ){ in operator =()
787 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in operator =()
788 delete pAttributes->GetObject( i ); in operator =()
789 delete pAttributes; in operator =()
791 if ( obj.pAttributes ){ in operator =()
792 pAttributes =new XMLAttributeList(); in operator =()
793 for ( sal_uLong i = 0; i < obj.pAttributes->Count(); i++ ) in operator =()
794 … AddAttribute( *obj.pAttributes->GetObject( i ) , obj.pAttributes->GetObject( i )->GetValue() ); in operator =()
804 if ( !pAttributes ) in AddAttribute()
805 pAttributes = new XMLAttributeList(); in AddAttribute()
806 pAttributes->Insert( new XMLAttribute( rAttribute, rValue ), LIST_APPEND ); in AddAttribute()
814 if ( pAttributes ){ in ChangeLanguageTag()
815 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ){ in ChangeLanguageTag()
816 if ( *pAttributes->GetObject( i ) == rName ){ in ChangeLanguageTag()
817 pAttributes->GetObject( i )->setValue(rValue); in ChangeLanguageTag()
843 if ( pAttributes ) in GetAttribute()
844 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in GetAttribute()
845 if ( *pAttributes->GetObject( i ) == rName ) in GetAttribute()
846 return pAttributes->GetObject( i ); in GetAttribute()
855 if ( pAttributes ) { in ~XMLElement()
856 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in ~XMLElement()
857 delete pAttributes->GetObject( i ); in ~XMLElement()
859 delete pAttributes; in ~XMLElement()
860 pAttributes = NULL; in ~XMLElement()