Lines Matching refs:aPrefSize
184 awt::Size aPrefSize( mrPlayer.getPreferredPlayerWindowSize() ); in implLayoutVideoWindow() local
197 aPrefSize.Width >>= 2; in implLayoutVideoWindow()
198 aPrefSize.Height >>= 2; in implLayoutVideoWindow()
203 aPrefSize.Width >>= 1; in implLayoutVideoWindow()
204 aPrefSize.Height >>= 1; in implLayoutVideoWindow()
209 aPrefSize.Width <<= 1; in implLayoutVideoWindow()
210 aPrefSize.Height <<= 1; in implLayoutVideoWindow()
215 aPrefSize.Width <<= 2; in implLayoutVideoWindow()
216 aPrefSize.Height <<= 2; in implLayoutVideoWindow()
228 if( ( aPrefSize.Width <= nVideoW ) && ( aPrefSize.Height <= nVideoH ) ) in implLayoutVideoWindow()
230 nX = ( nVideoW - aPrefSize.Width ) >> 1; in implLayoutVideoWindow()
231 nY = ( nVideoH - aPrefSize.Height ) >> 1; in implLayoutVideoWindow()
232 nWidth = aPrefSize.Width; in implLayoutVideoWindow()
233 nHeight = aPrefSize.Height; in implLayoutVideoWindow()
240 if( aPrefSize.Width > 0 && aPrefSize.Height > 0 && nVideoW > 0 && nVideoH > 0 ) in implLayoutVideoWindow()
242 double fPrefWH = (double) aPrefSize.Width / aPrefSize.Height; in implLayoutVideoWindow()