Lines Matching refs:pOutDev

65 		OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice );  in ImplAssertValidFontMetric()  local
66 if ( pOutDev ) in ImplAssertValidFontMetric()
68 Font aOldFont = pOutDev->GetFont(); in ImplAssertValidFontMetric()
69 pOutDev->SetFont( maFont ); in ImplAssertValidFontMetric()
70 mpFontMetric = new FontMetric( pOutDev->GetFontMetric() ); in ImplAssertValidFontMetric()
71 pOutDev->SetFont( aOldFont ); in ImplAssertValidFontMetric()
121 OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice ); in getCharWidth() local
122 if ( pOutDev ) in getCharWidth()
124 Font aOldFont = pOutDev->GetFont(); in getCharWidth()
125 pOutDev->SetFont( maFont ); in getCharWidth()
128 pOutDev->GetTextWidth( String(c) )); in getCharWidth()
130 pOutDev->SetFont( aOldFont ); in getCharWidth()
140 OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice ); in getCharWidths() local
141 if ( pOutDev ) in getCharWidths()
143 Font aOldFont = pOutDev->GetFont(); in getCharWidths()
144 pOutDev->SetFont( maFont ); in getCharWidths()
151 pOutDev->GetTextWidth( in getCharWidths()
155 pOutDev->SetFont( aOldFont ); in getCharWidths()
165 OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice ); in getStringWidth() local
166 if ( pOutDev ) in getStringWidth()
168 Font aOldFont = pOutDev->GetFont(); in getStringWidth()
169 pOutDev->SetFont( maFont ); in getStringWidth()
170 nRet = pOutDev->GetTextWidth( str ); in getStringWidth()
171 pOutDev->SetFont( aOldFont ); in getStringWidth()
181 OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice ); in getStringWidthArray() local
182 if ( pOutDev ) in getStringWidthArray()
184 Font aOldFont = pOutDev->GetFont(); in getStringWidthArray()
185 pOutDev->SetFont( maFont ); in getStringWidthArray()
187 nRet = pOutDev->GetTextArray( str, rDXArray.getArray() ); in getStringWidthArray()
188 pOutDev->SetFont( aOldFont ); in getStringWidthArray()
204 OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( mxDevice ); in hasGlyphs() local
205 if ( pOutDev ) in hasGlyphs()
208 if ( pOutDev->HasGlyphs( maFont, aStr, 0, aStr.Len() ) == STRING_LEN ) in hasGlyphs()