Lines Matching refs:pTxtNd
170 const SwTxtNode * pTxtNd = in SelectionHasNumber() local
172 if (!bResult && pTxtNd && pTxtNd->Len()==0 && !pTxtNd->GetNumRule()) { in SelectionHasNumber()
186 SwTxtNode * pTxtNd = pDoc->GetNodes()[nPos]->GetTxtNode(); in SelectionHasNumber() local
187 if (pTxtNd && pTxtNd->Len()!=0) in SelectionHasNumber()
189 bResult = pTxtNd->HasNumber(); in SelectionHasNumber()
194 pTxtNd->GetNumRule() == GetDoc()->GetOutlineNumRule() && in SelectionHasNumber()
195 !pTxtNd->IsCountedInList() ) in SelectionHasNumber()
216 const SwTxtNode * pTxtNd = in SelectionHasBullet() local
218 if (!bResult && pTxtNd && pTxtNd->Len()==0 && !pTxtNd->GetNumRule()) { in SelectionHasBullet()
232 SwTxtNode * pTxtNd = pDoc->GetNodes()[nPos]->GetTxtNode(); in SelectionHasBullet() local
233 if (pTxtNd && pTxtNd->Len()!=0) in SelectionHasBullet()
235 bResult = pTxtNd->HasBullet(); in SelectionHasBullet()
254 const SwTxtNode * pTxtNd = in HasNumber() local
257 if (pTxtNd) in HasNumber()
259 bResult = pTxtNd->HasNumber(); in HasNumber()
264 pTxtNd->GetNumRule() == GetDoc()->GetOutlineNumRule() && in HasNumber()
265 !pTxtNd->IsCountedInList() ) in HasNumber()
279 const SwTxtNode * pTxtNd = in HasBullet() local
282 if (pTxtNd) in HasBullet()
284 bResult = pTxtNd->HasBullet(); in HasBullet()
438 const SwTxtNode* pTxtNd = pCrsr->GetNode()->GetTxtNode(); in GetCurrentParaOutlineLevel() local
439 if( pTxtNd ) in GetCurrentParaOutlineLevel()
440 nLevel = pTxtNd->GetAttrOutlineLevel(); in GetCurrentParaOutlineLevel()
687 const SwTxtNode* pTxtNd = GetCrsr()->GetNode()->GetTxtNode(); in IsNoNum() local
688 if ( pTxtNd != NULL ) in IsNoNum()
690 bResult = !pTxtNd->IsCountedInList(); in IsNoNum()
704 const SwTxtNode* pTxtNd = pCrsr->GetNode()->GetTxtNode(); in GetNumLevel() local
706 ASSERT( pTxtNd != NULL, "GetNumLevel() without text node" ) in GetNumLevel()
707 if ( pTxtNd == NULL ) in GetNumLevel()
710 const SwNumRule* pRule = pTxtNd->GetNumRule(); in GetNumLevel()
713 const int nListLevelOfTxtNode( pTxtNd->GetActualListLevel() ); in GetNumLevel()
847 const SwTxtNode* pTxtNd = GetCrsr()->GetNode()->GetTxtNode(); in IsNumRuleStart() local
848 if( pTxtNd ) in IsNumRuleStart()
849 bResult = pTxtNd->IsListRestart() ? sal_True : sal_False; in IsNumRuleStart()
875 const SwTxtNode* pTxtNd = GetCrsr()->GetNode()->GetTxtNode(); in GetNodeNumStart() local
880 if ( pTxtNd && pTxtNd->HasAttrListRestartValue() ) in GetNodeNumStart()
882 return static_cast<sal_uInt16>(pTxtNd->GetAttrListRestartValue()); in GetNodeNumStart()