Home
last modified time | relevance | path

Searched refs:out_char (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1652 int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) in ImTextCharFromUtf8() argument
1674 *out_char = (uint32_t)(s[0] & masks[len]) << 18; in ImTextCharFromUtf8()
1675 *out_char |= (uint32_t)(s[1] & 0x3f) << 12; in ImTextCharFromUtf8()
1676 *out_char |= (uint32_t)(s[2] & 0x3f) << 6; in ImTextCharFromUtf8()
1677 *out_char |= (uint32_t)(s[3] & 0x3f) << 0; in ImTextCharFromUtf8()
1678 *out_char >>= shiftc[len]; in ImTextCharFromUtf8()
1682 e = (*out_char < mins[len]) << 6; // non-canonical encoding in ImTextCharFromUtf8()
1683 e |= ((*out_char >> 11) == 0x1b) << 7; // surrogate half? in ImTextCharFromUtf8()
1684 e |= (*out_char > IM_UNICODE_CODEPOINT_MAX) << 8; // out of range? in ImTextCharFromUtf8()
1698 *out_char in ImTextCharFromUtf8()
[all...]
H A Dimgui_internal.h332 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
/third_party/mesa3d/src/imgui/
H A Dimgui.cpp1575 int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) in ImTextCharFromUtf8() argument
1582 *out_char = c; in ImTextCharFromUtf8()
1587 *out_char = 0xFFFD; // will be invalid but not end of string in ImTextCharFromUtf8()
1593 *out_char = c; in ImTextCharFromUtf8()
1598 *out_char = 0xFFFD; // will be invalid but not end of string in ImTextCharFromUtf8()
1607 *out_char = c; in ImTextCharFromUtf8()
1612 *out_char = 0xFFFD; // will be invalid but not end of string in ImTextCharFromUtf8()
1626 *out_char = c; in ImTextCharFromUtf8()
1629 *out_char = 0; in ImTextCharFromUtf8()
H A Dimgui_internal.h144 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

Completed in 39 milliseconds