Home
last modified time | relevance | path

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

/external/mesa3d/src/imgui/
Dimgui_internal.h143 …ToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // retur…
144 …tCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // r…
145 …rFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** i…
146 IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); …
147 IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end);…
148 … ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); …
Dimgui.cpp1575 int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) in ImTextCharFromUtf8() argument
1588 if (in_text_end && in_text_end - (const char*)str < 2) return 1; in ImTextCharFromUtf8()
1599 if (in_text_end && in_text_end - (const char*)str < 3) return 1; in ImTextCharFromUtf8()
1613 if (in_text_end && in_text_end - (const char*)str < 4) return 1; in ImTextCharFromUtf8()
1633 int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, con… in ImTextStrFromUtf8() argument
1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) in ImTextStrFromUtf8()
1640 in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); in ImTextStrFromUtf8()
1652 int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) in ImTextCountCharsFromUtf8() argument
1655 while ((!in_text_end || in_text < in_text_end) && *in_text) in ImTextCountCharsFromUtf8()
1658 in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); in ImTextCountCharsFromUtf8()
[all …]