Lines Matching refs:mpContainer

53 : mpContainer( pContainer )  in SvUnoAttributeContainer()
55 if( mpContainer == NULL ) in SvUnoAttributeContainer()
56 mpContainer = new SvXMLAttrContainerData; in SvUnoAttributeContainer()
61 delete mpContainer; in ~SvUnoAttributeContainer()
74 return mpContainer->GetAttrCount() != 0; in hasElements()
79 const sal_uInt16 nAttrCount = mpContainer->GetAttrCount(); in getIndexByName()
86 if( mpContainer->GetAttrLName(nAttr) == aName && in getIndexByName()
87 mpContainer->GetAttrPrefix(nAttr).getLength() == 0L ) in getIndexByName()
98 if( mpContainer->GetAttrLName(nAttr) == aLName && in getIndexByName()
99 mpContainer->GetAttrPrefix(nAttr) == aPrefix ) in getIndexByName()
157 aData.Namespace = mpContainer->GetAttrNamespace(nAttr); in getByName()
159 aData.Value = mpContainer->GetAttrValue(nAttr); in getByName()
168 const sal_uInt16 nAttrCount = mpContainer->GetAttrCount(); in getElementNames()
175 OUStringBuffer sBuffer( mpContainer->GetAttrPrefix(nAttr) ); in getElementNames()
178 sBuffer.append( mpContainer->GetAttrLName(nAttr) ); in getElementNames()
210 if( mpContainer->SetAt( nAttr, aPrefix, aLName, pData->Value ) ) in replaceByName()
215 if( mpContainer->SetAt( nAttr, aPrefix, pData->Namespace, aLName, pData->Value ) ) in replaceByName()
223 if( mpContainer->SetAt( nAttr, aName, pData->Value ) ) in replaceByName()
253 if( mpContainer->AddAttr( aPrefix, aLName, pData->Value ) ) in insertByName()
258 if( mpContainer->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) ) in insertByName()
266 if( mpContainer->AddAttr( aName, pData->Value ) ) in insertByName()
279 mpContainer->Remove( nAttr ); in removeByName()