Lines Matching refs:nPara

391 	for ( sal_uInt32 nPara = 0; nPara < GetParaPortions().Count(); nPara++ )  in FormatDoc()  local
393 ParaPortion* pParaPortion = GetParaPortions().GetObject( nPara ); in FormatDoc()
398 sal_Bool bChangedByDerivedClass = GetEditEnginePtr()->FormattingParagraph( nPara ); in FormatDoc()
410 || CreateLines( nPara, nY ) ) in FormatDoc()
416 for ( sal_uInt32 n = nPara+1; n < GetParaPortions().Count(); n++ ) in FormatDoc()
425 GetEditEnginePtr()->ParagraphHeightChanged( nPara ); in FormatDoc()
549 for ( sal_uInt32 nPara = 0; nPara < GetParaPortions().Count(); nPara++ ) in CheckAutoPageSize() local
554 ParaPortion* pParaPortion = GetParaPortions().GetObject( nPara ); in CheckAutoPageSize()
556 SvxAdjust eJustification = GetJustification( nPara ); in CheckAutoPageSize()
560 CreateLines( nPara, 0 ); // 0: Bei AutoPageSize kein TextRange! in CheckAutoPageSize()
593 sal_Bool ImpEditEngine::CreateLines( sal_uInt32 nPara, sal_uInt32 nStartPosY ) in CreateLines() argument
595 ParaPortion* pParaPortion = GetParaPortions().GetObject( nPara ); in CreateLines()
637 sal_Bool bRightToLeftPara = IsRightToLeft( nPara ); in CreateLines()
639 SvxAdjust eJustification = GetJustification( nPara ); in CreateLines()
656 if ( !bEmptyNodeWithPolygon && !HasScriptType( nPara, i18n::ScriptType::COMPLEX ) ) in CreateLines()
692 ImplInitLayoutMode( GetRefDevice(), nPara, 0xFFFF ); in CreateLines()
1080 pPortion->SetRightToLeft( GetRightToLeft( nPara, nTmpPos+1 ) ); in CreateLines()
1327 if ( nPara || IsFixedCellHeight() || pLine->GetStartPortion() ) // Nicht die aller erste Zeile in CreateLines()
1651 sal_uInt32 nPara = GetParaPortions().GetPos( pParaPortion ); in CreateAndInsertEmptyLine() local
1652 SvxAdjust eJustification = GetJustification( nPara ); in CreateAndInsertEmptyLine()
1684 sal_uInt32 nPara = GetParaPortions().GetPos( pParaPortion ); in CreateAndInsertEmptyLine() local
1685 if ( nPara || IsFixedCellHeight() || pTmpLine->GetStartPortion() ) // Nicht die aller erste Zeile in CreateAndInsertEmptyLine()
2518 for ( sal_uInt32 nPara = 0; nPara < GetParaPortions().Count(); nPara++ ) in SetTextRanger() local
2520 ParaPortion* pParaPortion = GetParaPortions().GetObject( nPara ); in SetTextRanger()
4133 sal_uInt32 nPara = GetParaPortions().GetPos( pCurPortion ); in GetPrevVisPortion() local
4134 DBG_ASSERT( nPara < GetParaPortions().Count() , "Portion nicht gefunden: GetPrevVisPortion" ); in GetPrevVisPortion()
4135 ParaPortion* pPortion = nPara ? GetParaPortions()[--nPara] : 0; in GetPrevVisPortion()
4137 pPortion = nPara ? GetParaPortions()[--nPara] : 0; in GetPrevVisPortion()
4144 sal_uInt32 nPara = GetParaPortions().GetPos( pCurPortion ); in GetNextVisPortion() local
4145 DBG_ASSERT( nPara < GetParaPortions().Count() , "Portion nicht gefunden: GetPrevVisNode" ); in GetNextVisPortion()
4146 ParaPortion* pPortion = GetParaPortions().SaveGetObject( ++nPara ); in GetNextVisPortion()
4148 pPortion = GetParaPortions().SaveGetObject( ++nPara ); in GetNextVisPortion()
4153 EditPaM ImpEditEngine::InsertParagraph( sal_uInt32 nPara ) in InsertParagraph() argument
4156 if ( nPara != 0 ) in InsertParagraph()
4158 ContentNode* pNode = GetEditDoc().SaveGetObject( nPara-1 ); in InsertParagraph()
4173 EditSelection* ImpEditEngine::SelectParagraph( sal_uInt32 nPara ) in SelectParagraph() argument
4176 ContentNode* pNode = GetEditDoc().SaveGetObject( nPara ); in SelectParagraph()
4240 for ( sal_uInt32 nPara = 0; nPara < nParas; nPara++ ) in DoStretchChars() local
4242 ContentNode* pNode = GetEditDoc()[nPara]; in DoStretchChars()
4320 SetParaAttribs( nPara, aTmpSet ); in DoStretchChars()
4393 sal_uInt32 nPara = GetEditDoc().GetPos( const_cast< ContentNode * >(pNode) ); in GetNumberFormat() local
4394 DBG_ASSERT( nPara < EE_PARA_MAX, "node not found in array" ); in GetNumberFormat()
4395 if (nPara < EE_PARA_MAX) in GetNumberFormat()
4400 pRes = pEditEngine->GetNumberFormat( nPara ); in GetNumberFormat()
4497 void ImpEditEngine::ImplInitLayoutMode( OutputDevice* pOutDev, sal_uInt32 nPara, sal_uInt16 nIndex ) in ImplInitLayoutMode() argument
4503 bCTL = HasScriptType( nPara, i18n::ScriptType::COMPLEX ); in ImplInitLayoutMode()
4504 bR2L = IsRightToLeft( nPara ); in ImplInitLayoutMode()
4508 ContentNode* pNode = GetEditDoc().SaveGetObject( nPara ); in ImplInitLayoutMode()
4511 bR2L = GetRightToLeft( nPara, nIndex + 1); // this change was discussed in issue 37190 in ImplInitLayoutMode()