Home
last modified time | relevance | path

Searched refs:CurLenA (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_widgets.cpp2936 obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n); in STB_TEXTEDIT_DELETECHARS()
2953 if (!is_resizable && (new_text_len_utf8 + obj->CurLenA + 1 > obj->BufCapacityA)) in STB_TEXTEDIT_INSERTCHARS()
2971 obj->CurLenA += new_text_len_utf8; in STB_TEXTEDIT_INSERTCHARS()
3232 …edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above becau… in InputTextEx()
3282 edit_state.CurLenA = (int)(buf_end - buf); in InputTextEx()
3286 backup_current_text_length = edit_state.CurLenA; in InputTextEx()
3531 callback_data.BufTextLen = edit_state.CurLenA; in InputTextEx()
3557 …edit_state.CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user… in InputTextEx()
3567 apply_new_text_length = edit_state.CurLenA; in InputTextEx()
3751 const int buf_display_len = edit_state.CurLenA; in InputTextEx()
Dimgui_internal.h567 …int CurLenA, CurLenW; // we need to maintain our buffer length in both U… member