Searched refs:ImTextCountCharsFromUtf8 (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_internal.h146 IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count)
H A Dimgui_widgets.cpp3548 if (callback_data.CursorPos != utf8_cursor_pos) { edit_state.StbState.cursor = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.CursorPos); edit_state.CursorFollow = true; }
3549 if (callback_data.SelectionStart != utf8_selection_start) { edit_state.StbState.select_start = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionStart); }
3550 if (callback_data.SelectionEnd != utf8_selection_end) { edit_state.StbState.select_end = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionEnd); }
H A Dimgui.cpp1514 const int filename_wsize = ImTextCountCharsFromUtf8(filename, NULL) + 1;
1515 const int mode_wsize = ImTextCountCharsFromUtf8(mode, NULL) + 1;
1652 int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) function in typeref:typename:int
9208 const int wbuf_length = ImTextCountCharsFromUtf8(text, NULL) + 1;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_internal.h146 IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count)
H A Dimgui_widgets.cpp3548 if (callback_data.CursorPos != utf8_cursor_pos) { edit_state.StbState.cursor = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.CursorPos); edit_state.CursorFollow = true; }
3549 if (callback_data.SelectionStart != utf8_selection_start) { edit_state.StbState.select_start = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionStart); }
3550 if (callback_data.SelectionEnd != utf8_selection_end) { edit_state.StbState.select_end = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionEnd); }
H A Dimgui.cpp1514 const int filename_wsize = ImTextCountCharsFromUtf8(filename, NULL) + 1;
1515 const int mode_wsize = ImTextCountCharsFromUtf8(mode, NULL) + 1;
1652 int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) function in typeref:typename:int
9208 const int wbuf_length = ImTextCountCharsFromUtf8(text, NULL) + 1;

Completed in 67 milliseconds