Home
last modified time | relevance | path

Searched refs:maxwidth (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Demo/tkinter/ttk/
Dttkcalendar.py113 maxwidth = max(font.measure(col) for col in cols)
115 self._calendar.column(col, width=maxwidth, minwidth=maxwidth,
/external/autotest/client/profilers/powertop/src/
Ddisplay.c90 int maxwidth = 200; variable
104 maxwidth = maxx - 18; in setup_windows()
Dpowertop.h100 extern int maxwidth;
/external/python/cpython3/Lib/idlelib/
Dzoomheight.py78 maxwidth, maxheight, maxx, maxy = get_window_geometry(top)
/external/jline/src/src/main/java/jline/
DConsoleReader.java965 int maxwidth = 0; in printColumns() local
967 for (Iterator i = stuff.iterator(); i.hasNext(); maxwidth = Math.max( in printColumns()
968 maxwidth, i.next().toString().length())) { in printColumns()
985 if ((line.length() + maxwidth) > width) { in printColumns()
1005 pad(cur, maxwidth + 3, line); in printColumns()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dgraphics_robust_access_pass.cpp654 const auto maxwidth = tm.GetType(max->type_id())->AsInteger()->width(); in MakeSClampInst() local
656 assert(xwidth == maxwidth); in MakeSClampInst()
659 (void)maxwidth; in MakeSClampInst()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dgraphics_robust_access_pass.cpp655 const auto maxwidth = tm.GetType(max->type_id())->AsInteger()->width(); in MakeSClampInst() local
657 assert(xwidth == maxwidth); in MakeSClampInst()
660 (void)maxwidth; in MakeSClampInst()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dgraphics_robust_access_pass.cpp654 const auto maxwidth = tm.GetType(max->type_id())->AsInteger()->width(); in MakeSClampInst() local
656 assert(xwidth == maxwidth); in MakeSClampInst()
659 (void)maxwidth; in MakeSClampInst()
/external/python/cpython3/Lib/test/
Dtest_pprint.py811 maxwidth = max(map(len, lines))
812 self.assertLessEqual(maxwidth, w)
813 self.assertGreater(maxwidth, w - 3)
/external/mesa3d/src/gallium/frontends/vdpau/
Ddecode.c54 uint32_t maxwidth, maxheight; in vlVdpDecoderCreate() local
88 maxwidth = screen->get_video_param in vlVdpDecoderCreate()
102 if (width > maxwidth || height > maxheight) { in vlVdpDecoderCreate()