Lines Matching refs:ppSrc
296 SfxItemArray ppDst = _aItems, ppSrc = rASet._aItems; in SfxItemSet() local
297 for( sal_uInt16 n = nCnt; n; --n, ++ppDst, ++ppSrc ) in SfxItemSet()
298 if ( 0 == *ppSrc || // aktueller Default? in SfxItemSet()
299 IsInvalidItem(*ppSrc) || // Dont Care? in SfxItemSet()
300 IsStaticDefaultItem(*ppSrc) ) // nicht zu poolende Defaults in SfxItemSet()
302 *ppDst = *ppSrc; in SfxItemSet()
303 else if ( _pPool->IsItemFlag( **ppSrc, SFX_ITEM_POOLABLE ) ) in SfxItemSet()
306 *ppDst = *ppSrc; in SfxItemSet()
309 else if ( !(*ppSrc)->Which() ) in SfxItemSet()
310 *ppDst = (*ppSrc)->Clone(); in SfxItemSet()
313 *ppDst = &_pPool->Put( **ppSrc ); in SfxItemSet()