Lines Matching defs:width

788      * and layouts of its subcomponents. The resulting width and
811 setClientSize(newSize.width, newSize.height);
829 * are called afterwards with a width or height less than
855 if (size.width < minimumSize.width || size.height < minimumSize.height) {
856 int nw = Math.max(width, minimumSize.width);
870 * The {@code d.width} and {@code d.height} values
892 * The {@code width} and {@code height} values
907 public void setSize(int width, int height) {
908 super.setSize(width, height);
942 public void reshape(int x, int y, int width, int height) {
945 if (width < minSize.width) {
946 width = minSize.width;
952 super.reshape(x, y, width, height);
3223 dx = centerPoint.x - windowSize.width / 2;
3228 dx = gcBounds.x + (gcBounds.width - windowSize.width) / 2;
3235 dx = compLocation.x + ((compSize.width - windowSize.width) / 2);
3241 if (compLocation.x - gcBounds.x + compSize.width / 2 < gcBounds.width / 2) {
3242 dx = compLocation.x + compSize.width;
3244 dx = compLocation.x - windowSize.width;
3259 if (dx + windowSize.width > gcBounds.x + gcBounds.width) {
3260 dx = gcBounds.x + gcBounds.width - windowSize.width;
3445 * The {@code width} or {@code height} values
3465 public void setBounds(int x, int y, int width, int height) {
3472 super.setBounds(x, y, width, height);
3479 * The {@code r.width} or {@code r.height} values
3500 setBounds(r.x, r.y, r.width, r.height);
3992 screenBounds.x + screenBounds.width - screenInsets.right
4033 public void setSecurityWarningSize(Window window, int width, int height)
4035 window.securityWarningWidth = width;