Searched defs:size_hints (Results 1 - 4 of 4) sorted by relevance

/external/libpng/contrib/gregbook/
H A Drpng-x.c443 XSizeHints *size_hints; local
570 if ((size_hints = XAllocSizeHints()) != NULL) {
572 size_hints->flags = PMinSize | PMaxSize;
573 size_hints->min_width = size_hints->max_width = (int)image_width;
574 size_hints->min_height = size_hints->max_height = (int)image_height;
590 size_hints, wm_hints, class_hints);
597 if (size_hints)
598 XFree(size_hints);
[all...]
H A Drpng2-x.c838 XSizeHints *size_hints; local
948 if ((size_hints = XAllocSizeHints()) != NULL) {
950 size_hints->flags = PMinSize | PMaxSize;
951 size_hints->min_width = size_hints->max_width = (int)rpng2_info.width;
952 size_hints->min_height = size_hints->max_height =
969 size_hints, wm_hints, class_hints);
976 if (size_hints)
977 XFree(size_hints);
[all...]
/external/chromium_org/ui/aura/
H A Droot_window_host_x11.cc575 XSizeHints size_hints; local
576 size_hints.flags = PPosition | PWinGravity;
577 size_hints.x = bounds_.x();
578 size_hints.y = bounds_.y();
581 size_hints.win_gravity = StaticGravity;
582 XSetWMNormalHints(xdisplay_, xwindow_, &size_hints);
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_root_window_host_x11.cc720 XSizeHints size_hints; local
721 size_hints.flags = PPosition;
722 size_hints.x = bounds_.x();
723 size_hints.y = bounds_.y();
724 XSetWMNormalHints(xdisplay_, xwindow_, &size_hints);

Completed in 186 milliseconds