Lines Matching refs:pLabelList
198 pLabelList ( NULL ), in GDIMetaFile()
221 if( rMtf.pLabelList ) in GDIMetaFile()
222 pLabelList = new ImpLabelList( *rMtf.pLabelList ); in GDIMetaFile()
224 pLabelList = NULL; in GDIMetaFile()
256 if( rMtf.pLabelList ) in operator =()
257 pLabelList = new ImpLabelList( *rMtf.pLabelList ); in operator =()
259 pLabelList = NULL; in operator =()
350 delete pLabelList; in Clear()
351 pLabelList = NULL; in Clear()
661 if( pLabelList ) in GetActionPos()
662 pLabel = pLabelList->ImplGetLabel( pLabelList->ImplGetLabelPos( rLabel ) ); in GetActionPos()
675 if( !pLabelList ) in InsertLabel()
676 pLabelList = new ImpLabelList; in InsertLabel()
678 if( pLabelList->ImplGetLabelPos( rLabel ) == METAFILE_LABEL_NOTFOUND ) in InsertLabel()
680 pLabelList->ImplInsert( new ImpLabel( rLabel, nActionPos ) ); in InsertLabel()
691 if( pLabelList ) in RemoveLabel()
693 const sal_uLong nLabelPos = pLabelList->ImplGetLabelPos( rLabel ); in RemoveLabel()
696 delete pLabelList->ImplRemove( nLabelPos ); in RemoveLabel()
704 if( pLabelList ) in RenameLabel()
706 const sal_uLong nLabelPos = pLabelList->ImplGetLabelPos( rLabel ); in RenameLabel()
709 pLabelList->ImplGetLabel( nLabelPos )->aLabelName = rNewLabel; in RenameLabel()
717 return( pLabelList ? pLabelList->ImplCount() : 0UL ); in GetLabelCount()
726 if( pLabelList ) in GetLabel()
728 const ImpLabel* pLabel = pLabelList->ImplGetLabel( nLabel ); in GetLabel()