Lines Matching refs:pText
56 static void ImplDrawDefault( OutputDevice* pOutDev, const UniString* pText, in ImplDrawDefault() argument
112 if ( aSize.Width() > 0 && aSize.Height() > 0 && pFont && pText && pText->Len() in ImplDrawDefault()
129 long nTextWidth = pOutDev->GetTextWidth( *pText ); in ImplDrawDefault()
142 while( nStart < pText->Len() && pText->GetChar( nStart ) == ' ' ) in ImplDrawDefault()
144 while( nStart+nLen < pText->Len() && pText->GetChar( nStart+nLen ) != ' ' ) in ImplDrawDefault()
146 while( nStart < pText->Len() && nLines-- ) in ImplDrawDefault()
151 … while ( nStart+nNext < pText->Len() && pText->GetChar( nStart+nNext ) == ' ' ) in ImplDrawDefault()
153 … while ( nStart+nNext < pText->Len() && pText->GetChar( nStart+nNext ) != ' ' ) in ImplDrawDefault()
155 nTextWidth = pOutDev->GetTextWidth( *pText, nStart, nNext ); in ImplDrawDefault()
160 while ( nStart+nNext < pText->Len() ); in ImplDrawDefault()
163 nTextWidth = pOutDev->GetTextWidth( *pText, nStart, n ); in ImplDrawDefault()
165 nTextWidth = pOutDev->GetTextWidth( *pText, nStart, --n ); in ImplDrawDefault()
166 pOutDev->DrawText( aPoint, *pText, nStart, n ); in ImplDrawDefault()
171 while( nStart < pText->Len() && pText->GetChar( nStart ) == ' ' ) in ImplDrawDefault()