HomeSort by relevance Sort by last modified time
    Searched refs:size_hints (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/webrtc/test/linux/
glx_renderer.cc 130 XSizeHints* size_hints = XAllocSizeHints(); local
131 if (size_hints == NULL) {
134 size_hints->flags = PAspect;
135 size_hints->min_aspect.x = size_hints->max_aspect.x = width_;
136 size_hints->min_aspect.y = size_hints->max_aspect.y = height_;
137 XSetWMNormalHints(display_, window_, size_hints);
138 XFree(size_hints);
  /external/chromium_org/ui/platform_window/x11/
x11_window.cc 187 XSizeHints size_hints; local
188 size_hints.flags = PPosition | PWinGravity;
189 size_hints.x = requested_bounds_.x();
190 size_hints.y = requested_bounds_.y();
193 size_hints.win_gravity = StaticGravity;
194 XSetWMNormalHints(xdisplay_, xwindow_, &size_hints);
  /external/libpng/contrib/gregbook/
rpng-x.c 443 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...]
rpng2-x.c 818 XSizeHints *size_hints; local
    [all...]
  /external/chromium_org/ui/aura/
window_tree_host_x11.cc 492 XSizeHints size_hints; local
493 size_hints.flags = PPosition | PWinGravity;
494 size_hints.x = bounds_.x();
495 size_hints.y = bounds_.y();
498 size_hints.win_gravity = StaticGravity;
499 XSetWMNormalHints(xdisplay_, xwindow_, &size_hints);
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11.cc 1573 XSizeHints size_hints; local
    [all...]

Completed in 521 milliseconds