Lines Matching refs:nCacheId

1456 void PivotCacheBuffer::registerPivotCacheFragment( sal_Int32 nCacheId, const OUString& rFragmentPat…  in registerPivotCacheFragment()  argument
1458 …OSL_ENSURE( nCacheId >= 0, "PivotCacheBuffer::registerPivotCacheFragment - invalid pivot cache ide… in registerPivotCacheFragment()
1459 …OSL_ENSURE( maFragmentPaths.count( nCacheId ) == 0, "PivotCacheBuffer::registerPivotCacheFragment … in registerPivotCacheFragment()
1460 if( (nCacheId >= 0) && (rFragmentPath.getLength() > 0) ) in registerPivotCacheFragment()
1461 maFragmentPaths[ nCacheId ] = rFragmentPath; in registerPivotCacheFragment()
1467 sal_Int32 nCacheId = rStrm.readuInt16(); in importPivotCacheRef() local
1468 …OSL_ENSURE( maFragmentPaths.count( nCacheId ) == 0, "PivotCacheBuffer::importPivotCacheRef - cache… in importPivotCacheRef()
1472 aStrmName.insert( 0, spcHexChars[ extractValue< size_t >( nCacheId, nBit, 4 ) ] ); in importPivotCacheRef()
1474 maFragmentPaths[ nCacheId ] = aStrmName.makeStringAndClear(); in importPivotCacheRef()
1480 createPivotCache( nCacheId ).importPCDSource( rStrm ); in importPivotCacheRef()
1483 PivotCache* PivotCacheBuffer::importPivotCacheFragment( sal_Int32 nCacheId ) in importPivotCacheFragment() argument
1495 if( PivotCache* pCache = maCaches.get( nCacheId ).get() ) in importPivotCacheFragment()
1499 FragmentPathMap::iterator aIt = maFragmentPaths.find( nCacheId ); in importPivotCacheFragment()
1505 PivotCache& rCache = createPivotCache( nCacheId ); in importPivotCacheFragment()
1524 nCacheId = ContainerHelper::getVectorElement( maCacheIds, nCacheId, -1 ); in importPivotCacheFragment()
1525 PivotCache* pCache = maCaches.get( nCacheId ).get(); in importPivotCacheFragment()
1531 FragmentPathMap::iterator aIt = maFragmentPaths.find( nCacheId ); in importPivotCacheFragment()
1549 PivotCache& PivotCacheBuffer::createPivotCache( sal_Int32 nCacheId ) in createPivotCache() argument
1551 maCacheIds.push_back( nCacheId ); in createPivotCache()
1552 PivotCacheMap::mapped_type& rxCache = maCaches[ nCacheId ]; in createPivotCache()