Searched refs:in_text_end (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_internal.h | 143 IMGUI_API int ImTextStrToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count 144 IMGUI_API int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count 145 IMGUI_API int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_remaining = NULL); // return input UTF-8 bytes count 146 IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) 147 IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 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 | 1575 int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) argument 1588 if (in_text_end && in_text_end - (const char*)str < 2) return 1; 1599 if (in_text_end && in_text_end - (const char*)str < 3) return 1; 1613 if (in_text_end && in_text_end - (const char*)str < 4) return 1; 1633 int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining) argument 1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) 1652 ImTextCountCharsFromUtf8(const char * in_text,const char * in_text_end) argument 1706 ImTextCountUtf8BytesFromChar(const char * in_text,const char * in_text_end) argument 1721 ImTextStrToUtf8(char * buf,int buf_size,const ImWchar * in_text,const ImWchar * in_text_end) argument 1737 ImTextCountUtf8BytesFromStr(const ImWchar * in_text,const ImWchar * in_text_end) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_internal.h | 143 IMGUI_API int ImTextStrToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count 144 IMGUI_API int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count 145 IMGUI_API int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_remaining = NULL); // return input UTF-8 bytes count 146 IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) 147 IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 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 | 1575 int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) argument 1588 if (in_text_end && in_text_end - (const char*)str < 2) return 1; 1599 if (in_text_end && in_text_end - (const char*)str < 3) return 1; 1613 if (in_text_end && in_text_end - (const char*)str < 4) return 1; 1633 int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining) argument 1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) 1652 ImTextCountCharsFromUtf8(const char * in_text,const char * in_text_end) argument 1706 ImTextCountUtf8BytesFromChar(const char * in_text,const char * in_text_end) argument 1721 ImTextStrToUtf8(char * buf,int buf_size,const ImWchar * in_text,const ImWchar * in_text_end) argument 1737 ImTextCountUtf8BytesFromStr(const ImWchar * in_text,const ImWchar * in_text_end) argument [all...] |
Completed in 28 milliseconds