Lines Matching refs:pass
1458 // Combo box helper allowing to pass an array of strings.
1465 // Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0"
3071 bool pass = false;
3072 pass |= (c == '\n' && (flags & ImGuiInputTextFlags_Multiline));
3073 pass |= (c == '\t' && (flags & ImGuiInputTextFlags_AllowTabInput));
3074 if (!pass)
3338 // Insert character if they pass filtering
3633 // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort)
5019 // Tip: pass a non-visible label (e.g. "##dummy") then you can use the space to draw other text or image.
5132 // Tip: To have a list filling the entire window width, PushItemWidth(-1) and pass an non-visible label e.g. "##empty"
5215 ImGuiListClipper clipper(items_count, GetTextLineHeightWithSpacing()); // We know exactly our line height here so we pass it as a minor optimization, but generally you don't need to.