Searched refs:ImTextCountUtf8BytesFromStr (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 3700 obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n); in STB_TEXTEDIT_DELETECHARS() 3716 const int new_text_len_utf8 = ImTextCountUtf8BytesFromStr(new_text, new_text + new_text_len); in STB_TEXTEDIT_INSERTCHARS() 4328 const int clipboard_data_len = ImTextCountUtf8BytesFromStr(state->TextW.Data + ib, state->TextW.Data + ie) + 1; in InputTextEx() 4463 const int utf8_cursor_pos = callback_data.CursorPos = ImTextCountUtf8BytesFromStr(text, text + state->Stb.cursor); in InputTextEx() 4464 const int utf8_selection_start = callback_data.SelectionStart = ImTextCountUtf8BytesFromStr(text, text + state->Stb.select_start); in InputTextEx() 4465 const int utf8_selection_end = callback_data.SelectionEnd = ImTextCountUtf8BytesFromStr(text, text + state->Stb.select_end); in InputTextEx()
|
H A D | imgui_internal.h | 336 IMGUI_API int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8
|
H A D | imgui.cpp | 1811 int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end)
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 2936 obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n); 2952 const int new_text_len_utf8 = ImTextCountUtf8BytesFromStr(new_text, new_text + new_text_len); 3537 const int utf8_cursor_pos = callback_data.CursorPos = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.cursor); 3538 const int utf8_selection_start = callback_data.SelectionStart = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.select_start); 3539 const int utf8_selection_end = callback_data.SelectionEnd = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.select_end);
|
H A D | imgui_internal.h | 148 IMGUI_API int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8
|
H A D | imgui.cpp | 1737 int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end) in ImTextCountUtf8BytesFromStr() function 9195 int buf_len = ImTextCountUtf8BytesFromStr(wbuf_global, NULL) + 1; in GetClipboardTextFn_DefaultImpl()
|
Completed in 71 milliseconds