Lines Matching refs:nEnd

406 	nStart = nEnd = 0;  in EditLine()
423 nEnd = r.nEnd; in EditLine()
452 pL->nEnd = nEnd; in Clone()
469 if ( r1.nEnd != r2.nEnd ) in operator ==()
483 nEnd = r.nEnd; in operator =()
1410 sal_uInt16 nEnd = nEndPos; in GetParaAsString() local
1411 if ( pNextFeature && ( pNextFeature->GetStart() < nEnd ) ) in GetParaAsString()
1412 nEnd = pNextFeature->GetStart(); in GetParaAsString()
1416 DBG_ASSERT( nEnd >= nIndex, "Ende vorm Index?" ); in GetParaAsString()
1419 if (nEnd > nIndex) in GetParaAsString()
1420 aStr += XubString( *pNode, nIndex, nEnd - nIndex ); in GetParaAsString()
1435 pNextFeature = pNode->GetCharAttribs().FindFeature( ++nEnd ); in GetParaAsString()
1437 nIndex = nEnd; in GetParaAsString()
1633 void EditDoc::InsertAttribInSelection( ContentNode* pNode, sal_uInt16 nStart, sal_uInt16 nEnd, cons… in InsertAttribInSelection() argument
1636 DBG_ASSERT( nEnd <= pNode->Len(), "InsertAttrib: Attribut zu gross!" ); in InsertAttribInSelection()
1644 DBG_ASSERT( nStart <= nEnd, "Kleiner Rechenfehler in InsertAttribInSelection" ); in InsertAttribInSelection()
1646 RemoveAttribs( pNode, nStart, nEnd, pStartingAttrib, pEndingAttrib, rPoolItem.Which() ); in InsertAttribInSelection()
1661 pEndingAttrib->GetEnd() = nEnd; in InsertAttribInSelection()
1663 InsertAttrib( rPoolItem, pNode, nStart, nEnd ); in InsertAttribInSelection()
1671 sal_Bool EditDoc::RemoveAttribs( ContentNode* pNode, sal_uInt16 nStart, sal_uInt16 nEnd, sal_uInt16… in RemoveAttribs() argument
1675 return RemoveAttribs( pNode, nStart, nEnd, pStarting, pEnding, nWhich ); in RemoveAttribs()
1678 sal_Bool EditDoc::RemoveAttribs( ContentNode* pNode, sal_uInt16 nStart, sal_uInt16 nEnd, EditCharAt… in RemoveAttribs() argument
1681 DBG_ASSERT( nEnd <= pNode->Len(), "InsertAttrib: Attribut zu gross!" ); in RemoveAttribs()
1690 DBG_ASSERT( nStart <= nEnd, "Kleiner Rechenfehler in InsertAttribInSelection" ); in RemoveAttribs()
1706 if ( ( pAttr->GetStart() >= nStart ) && ( pAttr->GetStart() <= nEnd ) ) in RemoveAttribs()
1709 if ( pAttr->GetEnd() > nEnd ) in RemoveAttribs()
1711 pAttr->GetStart() = nEnd; // dann faengt es dahinter an in RemoveAttribs()
1724 else if ( ( pAttr->GetEnd() >= nStart ) && ( pAttr->GetEnd() <= nEnd ) ) in RemoveAttribs()
1739 else if ( ( pAttr->GetStart() <= nStart ) && ( pAttr->GetEnd() >= nEnd ) ) in RemoveAttribs()
1744 pAttr->GetStart() = nEnd; in RemoveAttribs()
1749 else if ( pAttr->GetEnd() == nEnd ) in RemoveAttribs()
1761 InsertAttrib( *pAttr->GetItem(), pNode, nEnd, nOldEnd ); in RemoveAttribs()
1791 …nsertAttrib( const SfxPoolItem& rPoolItem, ContentNode* pNode, sal_uInt16 nStart, sal_uInt16 nEnd ) in InsertAttrib() argument
1796 EditCharAttrib* pAttrib = MakeCharAttrib( GetItemPool(), rPoolItem, nStart, nEnd ); in InsertAttrib()
1803 void EditDoc::InsertAttrib( ContentNode* pNode, sal_uInt16 nStart, sal_uInt16 nEnd, const SfxPoolIt… in InsertAttrib() argument
1805 if ( nStart != nEnd ) in InsertAttrib()
1807 InsertAttribInSelection( pNode, nStart, nEnd, rPoolItem ); in InsertAttrib()