Home
last modified time | relevance | path

Searched refs:utf8_buf (Results 1 – 5 of 5) sorted by relevance

/third_party/libphonenumber/cpp/src/phonenumbers/utf/
Dunicodetext.h435 inline UnicodeText UTF8ToUnicodeText(const char* utf8_buf, int len, in UTF8ToUnicodeText() argument
439 t.CopyUTF8(utf8_buf, len); in UTF8ToUnicodeText()
441 t.PointToUTF8(utf8_buf, len); in UTF8ToUnicodeText()
450 inline UnicodeText UTF8ToUnicodeText(const char* utf8_buf, int len) { in UTF8ToUnicodeText() argument
451 return UTF8ToUnicodeText(utf8_buf, len, true); in UTF8ToUnicodeText()
/third_party/glib/glib/
Dgdir.c63 gchar utf8_buf[FILENAME_MAX*4]; member
248 strcpy (dir->utf8_buf, utf8_name); in g_dir_read_name()
251 return dir->utf8_buf; in g_dir_read_name()
Dgoption.c1882 gchar *utf8_buf = NULL; in platform_get_argv0()
1909 utf8_buf = g_utf16_to_utf8 (wargv[0], -1, NULL, NULL, NULL); in platform_get_argv0()
1913 if (G_UNLIKELY (utf8_buf == NULL)) in platform_get_argv0()
1920 base_arg0 = g_path_get_basename (utf8_buf); in platform_get_argv0()
1921 g_free (utf8_buf); in platform_get_argv0()
/third_party/skia/modules/svg/src/
DSkSVGText.cpp212 char utf8_buf[SkUTF::kMaxBytesInUTF8Sequence]; in append() local
213 const auto utf8_len = SkToInt(SkUTF::ToUTF8(ch, utf8_buf)); in append()
214 fUtf8 .push_back_n(utf8_len, utf8_buf); in append()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c3199 uint8_t utf8_buf[6]; in lexer_compare_identifier_to_chars() local
3218 escape_size = lit_code_point_to_cesu8_bytes (utf8_buf, code_point); in lexer_compare_identifier_to_chars()
3222 lit_four_byte_utf8_char_to_cesu8 (utf8_buf, left_p); in lexer_compare_identifier_to_chars()
3233 uint8_t *utf8_p = utf8_buf; in lexer_compare_identifier_to_chars()