Lines Matching refs:aPrefSize
159 awt::Size aPrefSize( mrPlayer.getPreferredPlayerWindowSize() ); in implLayoutVideoWindow() local
172 aPrefSize.Width >>= 2; in implLayoutVideoWindow()
173 aPrefSize.Height >>= 2; in implLayoutVideoWindow()
178 aPrefSize.Width >>= 1; in implLayoutVideoWindow()
179 aPrefSize.Height >>= 1; in implLayoutVideoWindow()
184 aPrefSize.Width <<= 1; in implLayoutVideoWindow()
185 aPrefSize.Height <<= 1; in implLayoutVideoWindow()
190 aPrefSize.Width <<= 2; in implLayoutVideoWindow()
191 aPrefSize.Height <<= 2; in implLayoutVideoWindow()
203 if( ( aPrefSize.Width <= nVideoW ) && ( aPrefSize.Height <= nVideoH ) ) in implLayoutVideoWindow()
205 nX = ( nVideoW - aPrefSize.Width ) >> 1; in implLayoutVideoWindow()
206 nY = ( nVideoH - aPrefSize.Height ) >> 1; in implLayoutVideoWindow()
207 nWidth = aPrefSize.Width; in implLayoutVideoWindow()
208 nHeight = aPrefSize.Height; in implLayoutVideoWindow()
215 … if( ( aPrefSize.Width > 0 ) && ( aPrefSize.Height > 0 ) && ( nVideoW > 0 ) && ( nVideoH > 0 ) ) in implLayoutVideoWindow()
217 double fPrefWH = (double) aPrefSize.Width / aPrefSize.Height; in implLayoutVideoWindow()