Lines Matching defs:info

459         GBLayoutInfo info = GetLayoutInfo(parent, MINSIZE);
461 dim[0] = new int[info.width];
462 dim[1] = new int[info.height];
464 System.arraycopy(info.minWidth, 0, dim[0], 0, info.width);
465 System.arraycopy(info.minHeight, 0, dim[1], 0, info.height);
477 GBLayoutInfo info = GetLayoutInfo(parent, PREFERREDSIZE);
479 dim[0] = new int[info.width];
480 dim[1] = new int[info.height];
482 System.arraycopy(info.minWidth, 0, dim[0], 0, info.width);
483 System.arraycopy(info.minHeight, 0, dim[1], 0, info.height);
629 GBLayoutInfo info = GetLayoutInfo(parent, PREFERREDSIZE);
630 return GetMinSize(parent, info);
640 GBLayoutInfo info = GetLayoutInfo(parent, MINSIZE);
641 return GetMinSize(parent, info);
652 GBLayoutInfo info = GetLayoutInfo(parent, TINYSIZE);
653 return GetMinSize(parent, info);
1560 GBLayoutInfo info) {
1566 for (i = 0; i < info.width; i++)
1567 t += info.minWidth[i];
1571 for (i = 0; i < info.height; i++)
1572 t += info.minHeight[i];
1602 GBLayoutInfo info, tinyinfo;
1619 info = GetLayoutInfo(parent, PREFERREDSIZE);
1620 d = GetMinSize(parent, info);
1626 info = GetLayoutInfo(parent, MINSIZE);
1627 d = GetMinSize(parent, info);
1632 layoutInfo = info;
1640 * DumpLayoutInfo(info);
1662 for (i = 0; i < info.width; i++)
1663 weight += info.weightX[i];
1665 for (i = 0; i < info.width; i++) {
1667 info.weightX[i]) / weight);
1668 info.minWidth[i] += dx;
1670 if (info.minWidth[i] < tinyinfo.minWidth[i]) {
1672 info.minWidth[i];
1673 info.minWidth[i] = tinyinfo.minWidth[i];
1685 for (i = 0; i < info.height; i++)
1686 weight += info.weightY[i];
1688 for (i = 0; i < info.height; i++) {
1690 info.weightY[i]) / weight);
1691 info.minHeight[i] += dy;
1693 if (info.minHeight[i] < tinyinfo.minHeight[i]) {
1695 info.minHeight[i];
1696 info.minHeight[i] = tinyinfo.minHeight[i];
1709 * DumpLayoutInfo(info);
1730 info.startx = diffw/2;
1736 info.startx = 0;
1742 info.startx = diffw;
1754 info.starty = diffh/2;
1760 info.starty = 0;
1766 info.starty = diffh;
1774 info.startx += insets.left;
1775 info.starty += insets.top;
1784 r.x = info.startx;
1786 r.x += info.minWidth[i];
1788 r.y = info.starty;
1790 r.y += info.minHeight[i];
1796 r.width += info.minWidth[i];
1803 r.height += info.minHeight[i];