Lines Matching refs:ImFormatString

1051         ImFormatString(overlay_buf, IM_ARRAYSIZE(overlay_buf), "%.0f%%", fraction*100+0.01f);  in ProgressBar()
1354ImFormatString(name, IM_ARRAYSIZE(name), "##Combo_%02d", g.BeginPopupStack.Size); // Recycle windo… in BeginCombo()
1528ImFormatString(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), "%.*s%%d%s", (int)(fmt_start - fmt), fmt,… in PatchFormatStringFloatToInt()
1540 return ImFormatString(buf, buf_size, format, *(const ImU32*)data_ptr); in DataTypeFormatString()
1542 return ImFormatString(buf, buf_size, format, *(const ImU64*)data_ptr); in DataTypeFormatString()
1544 return ImFormatString(buf, buf_size, format, *(const float*)data_ptr); in DataTypeFormatString()
1546 return ImFormatString(buf, buf_size, format, *(const double*)data_ptr); in DataTypeFormatString()
1698 ImFormatString(v_str, IM_ARRAYSIZE(v_str), fmt_start, v); in RoundScalarWithFormatT()
2762 ImFormatString(format, IM_ARRAYSIZE(format), "%%.%df", decimal_precision); in InputFloat()
2770 ImFormatString(format, IM_ARRAYSIZE(format), "%%.%df", decimal_precision); in InputFloat2()
2778 ImFormatString(format, IM_ARRAYSIZE(format), "%%.%df", decimal_precision); in InputFloat3()
2786 ImFormatString(format, IM_ARRAYSIZE(format), "%%.%df", decimal_precision); in InputFloat4()
3924ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", ImClamp(i[0],0,255), ImClamp(i[1],0,25… in ColorEdit4()
3926ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", ImClamp(i[0],0,255), ImClamp(i[1],0,255), … in ColorEdit4()
4554ImFormatString(buf, IM_ARRAYSIZE(buf), "(%.3ff, %.3ff, %.3ff, %.3ff)", col[0], col[1], col[2], (fl… in ColorEditOptionsPopup()
4557 ImFormatString(buf, IM_ARRAYSIZE(buf), "(%d,%d,%d,%d)", cr, cg, cb, ca); in ColorEditOptionsPopup()
4561 ImFormatString(buf, IM_ARRAYSIZE(buf), "0x%02X%02X%02X", cr, cg, cb); in ColorEditOptionsPopup()
4563 ImFormatString(buf, IM_ARRAYSIZE(buf), "0x%02X%02X%02X%02X", cr, cg, cb, ca); in ColorEditOptionsPopup()
5424 ImFormatString(fmt, IM_ARRAYSIZE(fmt), "%%s: %s", float_format); in Value()