Searched refs:nBlockId (Results 1 – 2 of 2) sorted by relevance
116 void Drawing::registerBlockId( sal_Int32 nBlockId ) in registerBlockId() argument118 OSL_ENSURE( nBlockId > 0, "Drawing::registerBlockId - invalid block index" ); in registerBlockId()119 if( nBlockId > 0 ) in registerBlockId()122 …BlockIdVector::iterator aIt = ::std::lower_bound( maBlockIds.begin(), maBlockIds.end(), nBlockId ); in registerBlockId()123 if( (aIt == maBlockIds.end()) || (nBlockId != *aIt) ) in registerBlockId()124 maBlockIds.insert( aIt, nBlockId ); in registerBlockId()180 sal_Int32 nBlockId = (nShapeId - 1) / 1024; in getLocalShapeIndex() local181 …BlockIdVector::iterator aIt = ::std::lower_bound( maBlockIds.begin(), maBlockIds.end(), nBlockId ); in getLocalShapeIndex()185 if( (aIt == maBlockIds.end()) || (*aIt != nBlockId) ) in getLocalShapeIndex()186 maBlockIds.insert( aIt, nBlockId ); in getLocalShapeIndex()
120 void registerBlockId( sal_Int32 nBlockId );
Completed in 12 milliseconds