Lines Matching refs:pNew
248 ServerFont* pNew = NULL; in CacheFont() local
250 pNew = mpFtManager->CreateFont( aFontSelData ); in CacheFont()
253 if( pNew ) in CacheFont()
255 maFontList[ aFontSelData ] = pNew; in CacheFont()
256 mnBytesUsed += pNew->GetByteCount(); in CacheFont()
261 mpCurrentGCFont = pNew; in CacheFont()
262 pNew->mpNextGCFont = pNew; in CacheFont()
263 pNew->mpPrevGCFont = pNew; in CacheFont()
267 pNew->mpNextGCFont = mpCurrentGCFont; in CacheFont()
268 pNew->mpPrevGCFont = mpCurrentGCFont->mpPrevGCFont; in CacheFont()
269 pNew->mpPrevGCFont->mpNextGCFont = pNew; in CacheFont()
270 mpCurrentGCFont->mpPrevGCFont = pNew; in CacheFont()
274 return pNew; in CacheFont()