Lines Matching refs:pass
1709 IM_ASSERT(g.LastItemData.Rect.Min.x == preview_data->PreviewRect.Min.x && g.LastItemData.Rect.Min.y == preview_data->PreviewRect.Min.y); // Didn't call after BeginCombo/EndCombo block or forgot to pass ImGuiComboFlags_CustomPreview flag?
1825 // Combo box helper allowing to pass an array of strings.
1832 // Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0"
3858 bool pass = false;
3859 pass |= (c == '\n' && (flags & ImGuiInputTextFlags_Multiline));
3860 pass |= (c == '\t' && (flags & ImGuiInputTextFlags_AllowTabInput));
3861 if (!pass)
4225 // Insert character if they pass filtering
4573 // 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)
4797 // Tiny external color changes would not be detected and this check would still pass. This is OK, since we only restore hue/saturation _only_ if they are undefined,
6122 // Tip: pass a non-visible label (e.g. "##hello") then you can use the space to draw other text or image.
6289 // Tip: To have a list filling the entire window width, use size.x = -FLT_MIN and pass an non-visible label e.g. "##empty"
6380 clipper.Begin(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.