Lines Matching refs:lst
42 if ( XMLChildNodeList* lst = pCur->GetChildList() ) in SearchL10NElements() local
43 for ( sal_uLong i = 0; i < lst->Count(); i++ ) in SearchL10NElements()
44 if ( lst->GetObject( i )->GetNodeType() == XML_NODE_TYPE_ELEMENT ) in SearchL10NElements()
45 HandleElement( ( XMLElement* )lst->GetObject( i ) ); in SearchL10NElements()
46 else if ( lst->GetObject( i )->GetNodeType() == XML_NODE_TYPE_COMMENT ) in SearchL10NElements()
47 lst->Remove( i-- ); in SearchL10NElements()
51 interestingAttributes( XMLAttributeList* lst ) in interestingAttributes() argument
54 if ( lst ) in interestingAttributes()
55 for ( sal_uLong i = 0; i < lst->Count(); i++ ) in interestingAttributes()
56 if ( lst->GetObject( i )->Equals( STRING( "id" ) ) ) in interestingAttributes()
57 interesting.insert( interesting.begin(), lst->GetObject( i ) ); in interestingAttributes()
58 else if ( ! BSTRING( *lst->GetObject( i ) ).CompareTo( "_", 1 ) ) in interestingAttributes()
59 interesting.push_back( lst->GetObject( i ) ); in interestingAttributes()