Lines Matching refs:pPara
123 Paragraph* pPara = GetParagraph( --n ); in Clear() local
124 delete pPara; in Clear()
138 Paragraph* pPara = GetParagraph( nStart ); in MoveParagraphs() local
139 aParas.Insert( pPara, LIST_APPEND ); in MoveParagraphs()
148 Paragraph* pPara = aParas.GetParagraph( n ); in MoveParagraphs() local
149 Insert( pPara, nDest++ ); in MoveParagraphs()
158 Paragraph* ParagraphList::NextVisible( Paragraph* pPara ) const in NextVisible()
160 sal_uLong n = GetAbsPos( pPara ); in NextVisible()
169 Paragraph* ParagraphList::PrevVisible( Paragraph* pPara ) const in PrevVisible()
171 sal_uLong n = GetAbsPos( pPara ); in PrevVisible()
216 Paragraph* pPara = GetParagraph( ++n ); in GetChildCount() local
217 while ( pPara && ( pPara->GetDepth() > pParent->GetDepth() ) ) in GetChildCount()
220 pPara = GetParagraph( ++n ); in GetChildCount()
247 Paragraph* pPara = GetParagraph( nPos+n ); in Expand() local
248 if ( !( pPara->IsVisible() ) ) in Expand()
250 pPara->bVisible = sal_True; in Expand()
251 aVisibleStateChangedHdl.Call( pPara ); in Expand()
263 Paragraph* pPara = GetParagraph( nPos+n ); in Collapse() local
264 if ( pPara->IsVisible() ) in Collapse()
266 pPara->bVisible = sal_False; in Collapse()
267 aVisibleStateChangedHdl.Call( pPara ); in Collapse()
272 sal_uLong ParagraphList::GetVisPos( Paragraph* pPara ) in GetVisPos() argument
275 sal_uLong nPos = GetAbsPos( pPara ); in GetVisPos()