Lines Matching refs:pEntry

632             GraphicCacheEntry* pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.First() );  in AddGraphicObject()  local
634 while( !bInserted && pEntry ) in AddGraphicObject()
636 if( pEntry->HasGraphicObjectReference( *pCopyObj ) ) in AddGraphicObject()
638 pEntry->AddGraphicObjectReference( rObj, rSubstitute ); in AddGraphicObject()
643 pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.Next() ); in AddGraphicObject()
650 GraphicCacheEntry* pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.First() ); in AddGraphicObject() local
658 while( !bInserted && pEntry ) in AddGraphicObject()
660 const GraphicID& rEntryID = pEntry->GetID(); in AddGraphicObject()
666 pEntry->TryToSwapIn(); in AddGraphicObject()
671 for( pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.First() ); in AddGraphicObject()
672 !bInserted && pEntry; in AddGraphicObject()
673 pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.Next() ) ) in AddGraphicObject()
675 const GraphicID& rID = pEntry->GetID(); in AddGraphicObject()
679 pEntry->AddGraphicObjectReference( rObj, rSubstitute ); in AddGraphicObject()
695 pEntry->AddGraphicObjectReference( rObj, rSubstitute ); in AddGraphicObject()
701 pEntry = static_cast< GraphicCacheEntry* >( maGraphicCache.Next() ); in AddGraphicObject()
715 GraphicCacheEntry* pEntry = (GraphicCacheEntry*) maGraphicCache.First(); in ReleaseGraphicObject() local
718 while( !bRemoved && pEntry ) in ReleaseGraphicObject()
720 bRemoved = pEntry->ReleaseGraphicObjectReference( rObj ); in ReleaseGraphicObject()
724 if( 0 == pEntry->GetGraphicObjectReferenceCount() ) in ReleaseGraphicObject()
732 if( pDisplayEntry->GetReferencedCacheEntry() == pEntry ) in ReleaseGraphicObject()
744 maGraphicCache.Remove( (void*) pEntry ); in ReleaseGraphicObject()
745 delete pEntry; in ReleaseGraphicObject()
749 pEntry = (GraphicCacheEntry*) maGraphicCache.Next(); in ReleaseGraphicObject()
761 GraphicCacheEntry* pEntry = ImplGetCacheEntry( rObj ); in GraphicObjectWasSwappedOut() local
763 if( pEntry ) in GraphicObjectWasSwappedOut()
764 pEntry->GraphicObjectWasSwappedOut( rObj ); in GraphicObjectWasSwappedOut()
771 GraphicCacheEntry* pEntry = ImplGetCacheEntry( rObj ); in FillSwappedGraphicObject() local
773 if( !pEntry ) in FillSwappedGraphicObject()
776 return pEntry->FillSwappedGraphicObject( rObj, rSubstitute ); in FillSwappedGraphicObject()
783 GraphicCacheEntry* pEntry = ImplGetCacheEntry( rObj ); in GraphicObjectWasSwappedIn() local
785 if( pEntry ) in GraphicObjectWasSwappedIn()
787 if( pEntry->GetID().IsEmpty() ) in GraphicObjectWasSwappedIn()
793 pEntry->GraphicObjectWasSwappedIn( rObj ); in GraphicObjectWasSwappedIn()
903 GraphicCacheEntry* pEntry = ( (GraphicCache*) this )->ImplGetCacheEntry( rObj ); in GetUniqueID() local
906 if( pEntry && pEntry->GetID().IsEmpty() ) in GetUniqueID()
907 pEntry->TryToSwapIn(); in GetUniqueID()
910 pEntry = ( (GraphicCache*) this )->ImplGetCacheEntry( rObj ); in GetUniqueID()
912 if( pEntry ) in GetUniqueID()
913 aRet = pEntry->GetID().GetIDString(); in GetUniqueID()