Lines Matching refs:Index

67 …virtual void SAL_CALL insertByIndex( sal_Int32 Index, const uno::Any& Element ) throw(lang::Illega…
68 …virtual void SAL_CALL removeByIndex( sal_Int32 Index ) throw(lang::IndexOutOfBoundsException, lang…
72 …virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const uno::Any& Element ) throw(lang::Illeg…
77 …virtual uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw(lang::IndexOutOfBoundsException, lan…
416 void SAL_CALL SvxUnoGluePointAccess::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
424 Index -= 4; in removeByIndex()
425 if( Index >= 0 && Index < pList->GetCount() ) in removeByIndex()
427 pList->Delete( (sal_uInt16)Index ); in removeByIndex()
442 void SAL_CALL SvxUnoGluePointAccess::replaceByIndex( sal_Int32 Index, const uno::Any& Element ) in replaceByIndex() argument
450 Index -= 4; in replaceByIndex()
451 if( mpObject.is() && Index >= 0 ) in replaceByIndex()
454 if( pList && Index < pList->GetCount() ) in replaceByIndex()
456 SdrGluePoint& rGlue = (*pList)[(sal_uInt16)Index]; in replaceByIndex()
490 uno::Any SAL_CALL SvxUnoGluePointAccess::getByIndex( sal_Int32 Index ) in getByIndex() argument
493 if( Index >= 0 && mpObject.is() && mpObject->IsNode() ) in getByIndex()
497 if( Index < 4 ) // default glue point? in getByIndex()
499 SdrGluePoint aTempPoint = mpObject->GetVertexGluePoint( (sal_uInt16)Index ); in getByIndex()
508 Index -= 4; in getByIndex()
510 if( pList && Index < pList->GetCount() ) in getByIndex()
512 const SdrGluePoint& rTempPoint = (*pList)[(sal_uInt16)Index]; in getByIndex()