Lines Matching refs:pList
226 SdrGluePointList* pList = mpObject->ForceGluePointList(); in insert() local
227 if( pList ) in insert()
236 sal_uInt16 nId = pList->Insert( aSdrGlue ); in insert()
242 return (sal_Int32)((*pList)[nId].GetId() + NON_USER_DEFINED_GLUE_POINTS) - 1; in insert()
258 SdrGluePointList* pList = const_cast<SdrGluePointList*>(mpObject->GetGluePointList()); in removeByIdentifier() local
259 const sal_uInt16 nCount = pList ? pList->GetCount() : 0; in removeByIdentifier()
264 if( (*pList)[i].GetId() == nId ) in removeByIdentifier()
266 pList->Delete( i ); in removeByIdentifier()
291 SdrGluePointList* pList = const_cast< SdrGluePointList* >( mpObject->GetGluePointList() ); in replaceByIdentifer() local
292 const sal_uInt16 nCount = pList ? pList->GetCount() : 0; in replaceByIdentifer()
296 if( (*pList)[i].GetId() == nId ) in replaceByIdentifer()
299 SdrGluePoint& rTempPoint = (*pList)[i]; in replaceByIdentifer()
332 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getByIdentifier() local
333 const sal_uInt16 nCount = pList ? pList->GetCount() : 0; in getByIdentifier()
336 const SdrGluePoint& rTempPoint = (*pList)[i]; in getByIdentifier()
359 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getIdentifiers() local
360 const sal_uInt16 nCount = pList ? pList->GetCount() : 0; in getIdentifiers()
371 *pIdentifier++ = (sal_Int32) ( (*pList)[i].GetId() + NON_USER_DEFINED_GLUE_POINTS ) - 1; in getIdentifiers()
391 SdrGluePointList* pList = mpObject->ForceGluePointList(); in insertByIndex() local
392 if( pList ) in insertByIndex()
400 pList->Insert( aSdrGlue ); in insertByIndex()
421 SdrGluePointList* pList = mpObject->ForceGluePointList(); in removeByIndex() local
422 if( pList ) in removeByIndex()
425 if( Index >= 0 && Index < pList->GetCount() ) in removeByIndex()
427 pList->Delete( (sal_uInt16)Index ); in removeByIndex()
453 SdrGluePointList* pList = const_cast< SdrGluePointList* >( mpObject->GetGluePointList() ); in replaceByIndex() local
454 if( pList && Index < pList->GetCount() ) in replaceByIndex()
456 SdrGluePoint& rGlue = (*pList)[(sal_uInt16)Index]; in replaceByIndex()
481 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getCount() local
482 if( pList ) in getCount()
483 nCount += pList->GetCount(); in getCount()
509 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getByIndex() local
510 if( pList && Index < pList->GetCount() ) in getByIndex()
512 const SdrGluePoint& rTempPoint = (*pList)[(sal_uInt16)Index]; in getByIndex()