Lines Matching refs:pAttrib
2307 EditCharAttrib* pAttrib = GetAttrib( pNode->GetCharAttribs().GetAttribs(), nAttr ); in CreateTextPortions() local
2308 while ( pAttrib ) in CreateTextPortions()
2312 aPositions.Insert( pAttrib->GetStart() ); in CreateTextPortions()
2313 aPositions.Insert( pAttrib->GetEnd() ); in CreateTextPortions()
2315 pAttrib = GetAttrib( pNode->GetCharAttribs().GetAttribs(), nAttr ); in CreateTextPortions()
2614 EditCharAttrib* pAttrib = GetAttrib( rAttribs, nAttr ); in SeekCursor() local
2615 while ( pAttrib && ( pAttrib->GetStart() <= nPos ) ) in SeekCursor()
2623 if ( ( pAttrib->Which() != nIgnoreWhich ) && in SeekCursor()
2624 ( ( ( pAttrib->GetStart() < nPos ) && ( pAttrib->GetEnd() >= nPos ) ) in SeekCursor()
2627 …DBG_ASSERT( ( pAttrib->Which() >= EE_CHAR_START ) && ( pAttrib->Which() <= EE_FEATURE_END ), "Ungl… in SeekCursor()
2628 if ( IsScriptItemValid( pAttrib->Which(), nScriptType ) ) in SeekCursor()
2630 pAttrib->SetFont( rFont, pOut ); in SeekCursor()
2632 if ( pAttrib->Which() == EE_FEATURE_FIELD ) in SeekCursor()
2639 if ( pAttrib->Which() == EE_CHAR_FONTWIDTH ) in SeekCursor()
2640 nRelWidth = ((const SvxCharScaleWidthItem*)pAttrib->GetItem())->GetValue(); in SeekCursor()
2641 if ( pAttrib->Which() == EE_CHAR_LANGUAGE_CJK ) in SeekCursor()
2642 pCJKLanguageItem = (const SvxLanguageItem*) pAttrib->GetItem(); in SeekCursor()
2644 pAttrib = GetAttrib( rAttribs, ++nAttr ); in SeekCursor()