| /xsrc/external/mit/ctwm/dist/tests/layout/ |
| test_monitor_layout.c | 27 if(Scr->Layout == NULL) { 28 fprintf(stderr, "BUG: Scr->Layout == NULL\n"); 34 RLayoutPrint(Scr->Layout); 40 const int nmons = RLayoutNumMonitors(Scr->Layout); 50 char **names = Scr->Layout->names; 66 RAreaList *mons = Scr->Layout->monitors;
|
| /xsrc/external/mit/MesaLib.old/src/mesa/ |
| format_info.h | 37 .Layout = MESA_FORMAT_LAYOUT_OTHER, 51 .Layout = MESA_FORMAT_LAYOUT_PACKED, 65 .Layout = MESA_FORMAT_LAYOUT_PACKED, 79 .Layout = MESA_FORMAT_LAYOUT_PACKED, 93 .Layout = MESA_FORMAT_LAYOUT_PACKED, 107 .Layout = MESA_FORMAT_LAYOUT_PACKED, 121 .Layout = MESA_FORMAT_LAYOUT_PACKED, 135 .Layout = MESA_FORMAT_LAYOUT_PACKED, 149 .Layout = MESA_FORMAT_LAYOUT_PACKED, 163 .Layout = MESA_FORMAT_LAYOUT_PACKED [all...] |
| /xsrc/external/mit/MesaLib/src/mesa/ |
| format_info.h | 37 .Layout = MESA_FORMAT_LAYOUT_OTHER, 51 .Layout = MESA_FORMAT_LAYOUT_PACKED, 65 .Layout = MESA_FORMAT_LAYOUT_PACKED, 79 .Layout = MESA_FORMAT_LAYOUT_PACKED, 93 .Layout = MESA_FORMAT_LAYOUT_PACKED, 107 .Layout = MESA_FORMAT_LAYOUT_PACKED, 121 .Layout = MESA_FORMAT_LAYOUT_PACKED, 135 .Layout = MESA_FORMAT_LAYOUT_PACKED, 149 .Layout = MESA_FORMAT_LAYOUT_PACKED, 163 .Layout = MESA_FORMAT_LAYOUT_PACKED [all...] |
| /xsrc/external/mit/xkeyboard-config/dist/rules/compat/ |
| map-variants.py | 9 class Layout(object): 10 def __init__(self, layout, variant=None): 11 self.layout = layout 13 if '(' in layout: 15 # parse a layout(variant) string 16 match = re.match(r'([^(]+)\(([^)]+)\)', layout) 17 self.layout = match.groups()[0] 22 return '{}({})'.format(self.layout, self.variant) 24 return '{}'.format(self.layout) [all...] |
| /xsrc/external/mit/ctwm/dist/ |
| ctwm_main.c | 441 * Figure out the layout of our various monitors if RANDR is 446 Scr->Layout = XrandrNewLayout(dpy, Scr->XineramaRoot); 449 if(Scr->Layout == NULL) { 450 // No RANDR, so as far as we know, the layout is just one 457 Scr->Layout = RLayoutNew(fsl); 460 fprintf(stderr, "Layout: "); 461 RLayoutPrint(Scr->Layout); 463 if(RLayoutNumMonitors(Scr->Layout) < 1) { 679 Scr->BorderedLayout = RLayoutCopyCropped(Scr->Layout, 683 Scr->BorderedLayout = Scr->Layout; // nothing to cro [all...] |
| functions_identify.c | 245 RLayoutFindLeftRightEdges(Scr->Layout, &area, &min_x, &max_right); 253 RLayoutFindTopBottomEdges(Scr->Layout, &area, &min_y, &max_bottom);
|
| windowbox.c | 52 mask = RLayoutXParseGeometry(Scr->Layout, winbox->geometry,
|
| screen.h | 210 /// Layout of our roow window and monitor(s). 211 RLayout *Layout; 212 /// Layout taking into account Border{Top,Left,Right,Bottom} config
|
| win_decorations.c | 103 limit = RLayoutFindBottomEdge(Scr->Layout, &area); 108 limit = RLayoutFindTopEdge(Scr->Layout, &area); 115 limit = RLayoutFindRightEdge(Scr->Layout, &area); 120 limit = RLayoutFindLeftEdge(Scr->Layout, &area);
|
| win_regions.c | 47 mask = RLayoutXParseGeometry(Scr->Layout, geom, &wr->x, &wr->y,
|
| iconmgr.c | 114 mask = RLayoutXParseGeometry(Scr->Layout, p->geometry, 1209 mask = RLayoutXParseGeometry(Scr->Layout, ip->geometry, &JunkX, &JunkY,
|
| parse_be.c | 2013 * Parsing for Layout { } lists, to override the monitor layout we 2131 * Finalize the override layout and store it up globally. 2162 fprintf(stderr, "Overridden layout: "); 2166 RLayoutFree(Scr->Layout); 2167 Scr->Layout = new_layout;
|
| add_window.c | 733 int mask = RLayoutXParseGeometry(Scr->Layout, geom, 1468 const RLayout *layout = Scr->BorderedLayout; local 1483 // Layout, rather than BorderedLayout. This is Wrong(tm) 1492 layout = Scr->Layout; 1496 RLayoutFindTopBottomEdges(layout, &area, 1498 RLayoutFindLeftRightEdges(layout, &area,
|
| /xsrc/external/mit/libXaw/dist/src/ |
| List.c | 80 static Bool Layout(Widget, Bool, Bool, Dimension*, Dimension*); 420 if (Layout(w, changex, changey, &width, &height)) { 455 Layout(w, request.height != reply.height, 464 Layout(w, False, False, &request.width, &request.height); 832 change = Layout(w, !width_req, !height_req, &new_width, &new_height); 853 if (Layout(w, False, False, &width, &height)) 859 /* Layout() 866 * we are going to layout the list widget to, 872 Layout(Widget w, Bool xfree, Bool yfree, Dimension *width, Dimension *height) 1147 Layout(cnew, WidthFree(nl), HeightFree(nl) [all...] |
| Form.c | 79 static Boolean Layout(FormWidget, unsigned int, unsigned int, Bool); 288 Layout, /* layout */ 442 if (c->form_class.layout == XtInheritLayout) 443 c->form_class.layout = super->form_class.layout; 527 * Layout 545 Layout(FormWidget fw, unsigned int width _X_UNUSED, unsigned int height _X_UNUSED, 819 * then it is necessary to compute a new layout if ConstraintSetValues 823 (*((FormWidgetClass)fw->core.widget_class)->form_class.layout) [all...] |
| SimpleMenu.c | 92 static void Layout(Widget, Dimension*, Dimension*); 135 /* layout */ 554 Layout(w, NULL, NULL); 578 Boolean ret_val = False, layout = False; local 586 layout = True; 590 layout = True; 618 layout = True; 637 if (layout) 638 Layout(cnew, NULL, NULL); 714 Layout(w, &reply->width, &reply->height) [all...] |
| Viewport.c | 62 static Boolean Layout(FormWidget, unsigned int, unsigned int, Bool); 218 Layout, /* layout */ 392 (*w->core.widget_class->core_class.resize)(cnew); /* Recompute layout */ 443 (*((ViewportWidgetClass)w->core.widget_class)->form_class.layout) 714 * Computes the layout give forcebars is set. 796 Layout(FormWidget w, unsigned int width _X_UNUSED, unsigned int height _X_UNUSED, Bool force _X_UNUSED)
|
| /xsrc/external/mit/xkeyboard-config/dist/tests/ |
| test_rules_xml.py | 28 Return an iterator of type (layout, variant) for each element in the XML 33 for layout in root.iter('layout'): 34 yield layout, None 36 for variant in layout.iter('variant'): 37 yield layout, variant 55 # for any test_foo function with an argument named layout, 56 # make it a Layout wrapper class for all layout(variant) combinations 57 elif 'layout' in metafunc.fixturenames [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/ |
| d3d12_bufmgr.cpp | 106 res_desc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
|
| d3d12_resource.cpp | 214 desc.Layout = D3D12_TEXTURE_LAYOUT_UNKNOWN; 217 desc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
|
| /xsrc/external/mit/xman/dist/ |
| ScrollByL.c | 106 static void Layout(Widget w); 156 /* resize */ Layout, 184 /* Function Name: Layout 193 Layout(Widget w) 683 Layout(w);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| formats.c | 45 enum mesa_format_layout Layout; 211 * Return the layout type of the given format. 217 return info->Layout; 437 if (info->ArrayFormat && info->Layout == MESA_FORMAT_LAYOUT_PACKED)
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| formats.c | 45 enum mesa_format_layout Layout; 202 * Return the layout type of the given format. 208 return info->Layout; 419 info->Layout == MESA_FORMAT_LAYOUT_PACKED)
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/ |
| xorgconf.cpp | 164 # Then to change the language, change the Layout setting. 165 # For example, a german layout can be obtained with: 518 # "-layout" option. In the absence of this, the first section is used. 526 Identifier "Main Layout" 552 Identifier "another layout" 561 Identifier "simple layout"
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/ |
| xorgconf.cpp | 170 # Then to change the language, change the Layout setting. 171 # For example, a german layout can be obtained with: 524 # "-layout" option. In the absence of this, the first section is used. 532 Identifier "Main Layout" 558 Identifier "another layout" 567 Identifier "simple layout"
|