Home
last modified time | relevance | path

Searched refs:ItemWidth (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/llvm/tools/llvm-rc/
DResourceScriptStmt.h637 uint32_t PosX, uint32_t PosY, uint32_t ItemWidth, uint32_t ItemHeight, in Control() argument
641 Width(ItemWidth), Height(ItemHeight), Style(ItemStyle), in Control()
/external/mesa3d/src/imgui/
Dimgui_internal.h1082 …float ItemWidth; // == ItemWidthStack.back(). 0.0: default, >0.0: w… member
1115 ItemWidth = 0.0f; in ImGuiWindowTempData()
Dimgui.cpp5335 window->DC.ItemWidth = window->ItemWidthDefault; in Begin()
5631 window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); in PushItemWidth()
5632 window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); in PushItemWidth()
5646 window->DC.ItemWidth = window->DC.ItemWidthStack.back(); in PushMultiItemsWidths()
5653 …window->DC.ItemWidth = window->DC.ItemWidthStack.empty() ? window->ItemWidthDefault : window->DC.I… in PopItemWidth()
5659 float w = window->DC.ItemWidth; in CalcItemWidth()