Lines Matching refs:lst
160 findAttribute( XMLAttributeList* lst, String const& name ) in findAttribute() argument
162 for ( sal_uLong i = 0; i < lst->Count(); i++ ) in findAttribute()
163 if ( lst->GetObject( i )->Equals( name ) ) in findAttribute()
164 return lst->GetObject( i ); in findAttribute()
169 translateAttribute( XMLAttributeList* lst, in translateAttribute() argument
172 if ( XMLAttribute* a = findAttribute( lst, name ) ) in translateAttribute()
173 return lst->Replace ( new XMLAttribute( name.Copy( 1 ), translation ), a ); in translateAttribute()
239 if ( XMLChildNodeList* lst = p->GetChildList() ) in insertMarker() local
240 if ( lst->Count() ) in insertMarker()
244 if ( lst->Count() > 1 in insertMarker()
245 && lst->GetObject( 2 )->GetNodeType() == XML_NODE_TYPE_DEFAULT ) in insertMarker()
250 lst->Insert( new XMLComment( marker, 0 ), i ); in insertMarker()