Lines Matching refs:nWhich

633 			sal_uInt16 nVersion(0), nWhich(0);  in Load()  local
635 rStream >> nWhich; in Load()
638 nWhich = GetNewWhich( nWhich ); in Load()
641 if ( !IsInRange(nWhich) ) in Load()
651 sal_uInt16 nIndex = GetIndex_Impl(nWhich); in Load()
686 sal_uInt16 nVersion(0), nWhich(0); in Load() local
688 rStream >> nWhich; in Load()
691 nWhich = GetNewWhich( nWhich ); in Load()
694 if ( !IsInRange(nWhich) ) in Load()
703 ( *( ppStaticDefaults + GetIndex_Impl(nWhich) ) ) in Load()
706 *( ppPoolDefaults + GetIndex_Impl(nWhich) ) = pItem; in Load()
821 sal_uInt16 nWhich(0), nSlot(0); in Load1_Impl() local
822 while ( rStream >> nWhich, nWhich ) in Load1_Impl()
826 nWhich = GetNewWhich( nWhich ); in Load1_Impl()
842 nWhich = nMappedWhich; in Load1_Impl()
849 sal_uInt16 nIndex = GetIndex_Impl(nWhich); in Load1_Impl()
971 while ( rStream >> nWhich, nWhich ) in Load1_Impl()
975 nWhich = GetNewWhich( nWhich ); in Load1_Impl()
989 nWhich = nMappedWhich; in Load1_Impl()
991 ( *( ppStaticDefaults + GetIndex_Impl(nWhich) ) ) in Load1_Impl()
994 *( ppPoolDefaults + GetIndex_Impl(nWhich) ) = pItem; in Load1_Impl()
1228 FASTBOOL SfxItemPool::IsInStoringRange( sal_uInt16 nWhich ) const in IsInStoringRange()
1230 return nWhich >= pImp->nStoringStart && in IsInStoringRange()
1231 nWhich <= pImp->nStoringEnd; in IsInStoringRange()
1338 sal_uInt16 nWhich = pOldWhichIdTab[n]; in SetVersionMap() local
1339 if ( nWhich < pImp->nVerStart ) in SetVersionMap()
1341 if ( !nWhich ) in SetVersionMap()
1342 nWhich = 0; in SetVersionMap()
1343 pImp->nVerStart = nWhich; in SetVersionMap()
1345 else if ( nWhich > pImp->nVerEnd ) in SetVersionMap()
1346 pImp->nVerEnd = nWhich; in SetVersionMap()
1445 FASTBOOL SfxItemPool::IsInVersionsRange( sal_uInt16 nWhich ) const in IsInVersionsRange()
1447 return nWhich >= pImp->nVerStart && nWhich <= pImp->nVerEnd; in IsInVersionsRange()
1623 sal_uInt16 nWhich(0), nSlot(0); // nSurrogate; in LoadItem() local
1624 rStream >> nWhich >> nSlot; in LoadItem()
1631 while ( !pRefPool->IsInVersionsRange(nWhich) ) in LoadItem()
1654 nWhich = pRefPool->GetNewWhich( nWhich ); in LoadItem()
1656 DBG_ASSERT( !nWhich || !pImp->bInSetItem || in LoadItem()
1657 !pRefPool->ppStaticDefaults[pRefPool->GetIndex_Impl(nWhich)]->ISA(SfxSetItem), in LoadItem()
1665 if ( nWhich ) in LoadItem()
1667 pItem = LoadSurrogate( rStream, nWhich, nSlot, pRefPool ); in LoadItem()
1674 if ( bDirect || ( nWhich && !pItem ) ) in LoadItem()
1683 if ( nWhich ) in LoadItem()
1687 pRefPool->GetDefaultItem(nWhich).Create(rStream, nVersion); in LoadItem()