Lines Matching refs:aPrefDim
142 java.awt.Dimension aPrefDim = aVisualComponent.getPreferredSize(); in LayoutComponents() local
153 aPrefDim.width >>= 2; in LayoutComponents()
154 aPrefDim.height >>= 2; in LayoutComponents()
159 aPrefDim.width >>= 1; in LayoutComponents()
160 aPrefDim.height >>= 1; in LayoutComponents()
165 aPrefDim.width <<= 1; in LayoutComponents()
166 aPrefDim.height <<= 1; in LayoutComponents()
171 aPrefDim.width <<= 2; in LayoutComponents()
172 aPrefDim.height <<= 2; in LayoutComponents()
184 if( ( aPrefDim.width <= nVideoW ) && ( aPrefDim.height <= nVideoH ) ) in LayoutComponents()
186 nX = ( nVideoW - aPrefDim.width ) >> 1; in LayoutComponents()
187 nY = ( nVideoH - aPrefDim.height ) >> 1; in LayoutComponents()
188 nWidth = aPrefDim.width; in LayoutComponents()
189 nHeight = aPrefDim.height; in LayoutComponents()
196 … if( aPrefDim.width > 0 && aPrefDim.height > 0 && nVideoW > 0 && nVideoH > 0 ) in LayoutComponents()
198 double fPrefWH = (double) aPrefDim.width / aPrefDim.height; in LayoutComponents()