Home
last modified time | relevance | path

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

/third_party/glfw/src/
Dwindow.c185 window->maxwidth = GLFW_DONT_CARE; in glfwCreateWindow()
506 int maxwidth, int maxheight) in glfwSetWindowSizeLimits() argument
524 if (maxwidth != GLFW_DONT_CARE && maxheight != GLFW_DONT_CARE) in glfwSetWindowSizeLimits()
526 if (maxwidth < 0 || maxheight < 0 || in glfwSetWindowSizeLimits()
527 maxwidth < minwidth || maxheight < minheight) in glfwSetWindowSizeLimits()
531 maxwidth, maxheight); in glfwSetWindowSizeLimits()
538 window->maxwidth = maxwidth; in glfwSetWindowSizeLimits()
546 maxwidth, maxheight); in glfwSetWindowSizeLimits()
Dwl_window.c75 else if (window->maxwidth != GLFW_DONT_CARE && width > window->maxwidth) in handleConfigure()
76 width = window->maxwidth; in handleConfigure()
510 int maxwidth, int maxheight) in _glfwPlatformSetWindowSizeLimits() argument
Dinternal.h361 int maxwidth, maxheight; member
672 …SetWindowSizeLimits(_GLFWwindow* window, int minwidth, int minheight, int maxwidth, int maxheight);
Dwin32_window.c770 if (window->maxwidth != GLFW_DONT_CARE && in windowProc()
773 mmi->ptMaxTrackSize.x = window->maxwidth + xoff; in windowProc()
1153 int maxwidth, int maxheight) in _glfwPlatformSetWindowSizeLimits() argument
1158 (maxwidth == GLFW_DONT_CARE || maxheight == GLFW_DONT_CARE)) in _glfwPlatformSetWindowSizeLimits()
Dcocoa_window.m1151 int maxwidth, int maxheight)
1158 if (maxwidth == GLFW_DONT_CARE || maxheight == GLFW_DONT_CARE)
1161 [window->ns.object setContentMaxSize:NSMakeSize(maxwidth, maxheight)];
1323 if (window->maxwidth != GLFW_DONT_CARE &&
1326 [window->ns.object setContentMaxSize:NSMakeSize(window->maxwidth,
Dx11_window.c268 if (window->maxwidth != GLFW_DONT_CARE && in updateNormalHints()
272 hints->max_width = window->maxwidth; in updateNormalHints()
1785 int maxwidth, int maxheight) in _glfwPlatformSetWindowSizeLimits() argument
Dmir_window.c436 int maxwidth, int maxheight) in _glfwPlatformSetWindowSizeLimits() argument
/third_party/littlefs/scripts/
Dexplode_asserts.py137 def mkdecls(outf, maxwidth=16): argument
149 'maxwidth': maxwidth,
353 mkdecls(outf, maxwidth=args.maxwidth)
/third_party/python/Lib/tkinter/
Dsimpledialog.py237 maxwidth = w.winfo_vrootwidth()
244 x = min(x, vrootx + maxwidth - minwidth)
255 w.wm_maxsize(maxwidth, maxheight)
/third_party/python/Lib/idlelib/
Dzoomheight.py78 maxwidth, maxheight, maxx, maxy = get_window_geometry(top)
/third_party/spirv-tools/source/opt/
Dgraphics_robust_access_pass.cpp651 const auto maxwidth = tm.GetType(max->type_id())->AsInteger()->width(); in MakeSClampInst() local
653 assert(xwidth == maxwidth); in MakeSClampInst()
656 (void)maxwidth; in MakeSClampInst()
/third_party/skia/third_party/externals/spirv-tools/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()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/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()
/third_party/mesa3d/src/gallium/frontends/vdpau/
Ddecode.c55 uint32_t maxwidth, maxheight; in vlVdpDecoderCreate() local
83 maxwidth = screen->get_video_param in vlVdpDecoderCreate()
97 if (width > maxwidth || height > maxheight) { in vlVdpDecoderCreate()
/third_party/python/Lib/test/
Dtest_pprint.py965 maxwidth = max(map(len, lines))
966 self.assertLessEqual(maxwidth, w)
967 self.assertGreater(maxwidth, w - 3)
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/
Dglfw3.h2084 GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* window, int minwidth, int minheight, int maxwidth,…
/third_party/glfw/include/GLFW/
Dglfw3.h2098 GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* window, int minwidth, int minheight, int maxwidth,…
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp81765 static nsIAtom* maxwidth; member in nsGkAtoms