Searched refs:CurLenA (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_widgets.cpp2936 obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n);
2953 if (!is_resizable && (new_text_len_utf8 + obj->CurLenA + 1 > obj->BufCapacityA))
2971 obj->CurLenA += new_text_len_utf8;
3232 edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8.
3282 edit_state.CurLenA = (int)(buf_end - buf);
3286 backup_current_text_length = edit_state.CurLenA;
3531 callback_data.BufTextLen = edit_state.CurLenA;
3557 edit_state.CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user, saves us an extra strlen()
3567 apply_new_text_length = edit_state.CurLenA;
3751 const int buf_display_len = edit_state.CurLenA;
[all...]
H A Dimgui_internal.h567 int CurLenA, CurLenW; // we need to maintain our buffer length in both UTF-8 and wchar format. member in struct:ImGuiInputTextState
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_widgets.cpp2936 obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n);
2953 if (!is_resizable && (new_text_len_utf8 + obj->CurLenA + 1 > obj->BufCapacityA))
2971 obj->CurLenA += new_text_len_utf8;
3232 edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8.
3282 edit_state.CurLenA = (int)(buf_end - buf);
3286 backup_current_text_length = edit_state.CurLenA;
3531 callback_data.BufTextLen = edit_state.CurLenA;
3557 edit_state.CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user, saves us an extra strlen()
3567 apply_new_text_length = edit_state.CurLenA;
3751 const int buf_display_len = edit_state.CurLenA;
[all...]
H A Dimgui_internal.h567 int CurLenA, CurLenW; // we need to maintain our buffer length in both UTF-8 and wchar format. member in struct:ImGuiInputTextState

Completed in 29 milliseconds