/third_party/boost/boost/spirit/home/x3/support/utility/ |
D | utf8.hpp | 20 typedef std::basic_string<utf8_char> utf8_string; typedef 23 inline utf8_string to_utf8(Char value) in to_utf8() 26 utf8_string result; in to_utf8() 27 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() 36 inline utf8_string to_utf8(Char const* str) in to_utf8() 39 utf8_string result; in to_utf8() 40 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() 50 inline utf8_string 54 utf8_string result; in to_utf8() 55 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() [all …]
|
/third_party/boost/boost/spirit/home/support/ |
D | utf8.hpp | 25 typedef std::basic_string<utf8_char> utf8_string; typedef 28 inline utf8_string to_utf8(Char value) in to_utf8() 31 utf8_string result; in to_utf8() 32 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() 41 inline utf8_string to_utf8(Char const* str) in to_utf8() 44 utf8_string result; in to_utf8() 45 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() 55 inline utf8_string 59 utf8_string result; in to_utf8() 60 typedef std::back_insert_iterator<utf8_string> insert_iter; in to_utf8() [all …]
|
D | info.hpp | 36 , utf8_string 43 explicit info(utf8_string const& tag_) in info() 47 info(utf8_string const& tag_, T const& value_) in info() 50 info(utf8_string const& tag_, char value_) in info() 51 : tag(tag_), value(utf8_string(1, value_)) {} in info() 53 info(utf8_string const& tag_, wchar_t value_) in info() 56 info(utf8_string const& tag_, ucs4_char value_) in info() 60 info(utf8_string const& tag_, Char const* str) in info() 64 info(utf8_string const& tag_ in info() 68 utf8_string tag; [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | read-properties.c | 195 unsigned char *utf8_string = XNMALLOC (2 * length + 1, unsigned char); in conv_from_iso_8859_1() local 196 unsigned char *q = utf8_string; in conv_from_iso_8859_1() 208 assert (q - utf8_string <= 2 * length); in conv_from_iso_8859_1() 210 return (char *) utf8_string; in conv_from_iso_8859_1() 584 unsigned char *utf8_string = XNMALLOC (utf8_buflen + 1, unsigned char); in read_escaped_string() local 586 memcpy (utf8_string, utf8_buffer, utf8_buflen); in read_escaped_string() 587 utf8_string[utf8_buflen] = '\0'; in read_escaped_string() 589 return (char *) utf8_string; in read_escaped_string()
|
D | read-stringtable.c | 332 unsigned char *utf8_string; in conv_from_ucs4() local 337 utf8_string = XNMALLOC (6 * buflen + 1, unsigned char); in conv_from_ucs4() 339 for (pos = 0, q = utf8_string; pos < buflen; ) in conv_from_ucs4() 350 assert (q - utf8_string <= 6 * buflen); in conv_from_ucs4() 352 return (char *) utf8_string; in conv_from_ucs4()
|
D | x-perl.c | 459 char *utf8_string; in phase2_getc() local 498 utf8_string = in phase2_getc() 502 savable_comment_add (utf8_string); in phase2_getc() 778 char *utf8_string = in extract_quotelike_pass1_utf8() local 781 if (utf8_string != string) in extract_quotelike_pass1_utf8() 783 return utf8_string; in extract_quotelike_pass1_utf8()
|
/third_party/jerryscript/jerry-core/lit/ |
D | lit-magic-strings.c | 49 #define LIT_MAGIC_STRING_DEF(id, utf8_string) \ in lit_get_magic_string_utf8() argument 50 (const lit_utf8_byte_t *) utf8_string, in lit_get_magic_string_utf8() 74 #define LIT_MAGIC_STRING_DEF(id, utf8_string) \ in lit_get_magic_string_size() argument 75 sizeof(utf8_string) - 1, in lit_get_magic_string_size() 99 #define LIT_MAGIC_STRING_DEF(id, utf8_string) in lit_get_magic_string_size_block_start() argument
|
D | lit-strings.c | 812 … lit_utf8_byte_t *utf8_string, /**< destination utf-8 buffer pointer in lit_convert_cesu8_string_to_utf8_string() argument 819 lit_utf8_byte_t *utf8_pos = utf8_string; in lit_convert_cesu8_string_to_utf8_string() 820 lit_utf8_byte_t *utf8_end_pos = utf8_string + utf8_size; in lit_convert_cesu8_string_to_utf8_string() 846 utf8_pos = utf8_string + size; in lit_convert_cesu8_string_to_utf8_string()
|
D | lit-strings.h | 118 lit_utf8_byte_t *utf8_string,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | ms_funcs.c | 25 static int utf8_to_ucs2(const u8 *utf8_string, size_t utf8_string_len, in utf8_to_ucs2() argument 32 u8 c = utf8_string[i]; in utf8_to_ucs2() 45 u8 c2 = utf8_string[++i]; in utf8_to_ucs2() 57 u8 c3 = utf8_string[++i]; in utf8_to_ucs2()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | ms_funcs.c | 25 static int utf8_to_ucs2(const u8 *utf8_string, size_t utf8_string_len, in utf8_to_ucs2() argument 32 u8 c = utf8_string[i]; in utf8_to_ucs2() 45 u8 c2 = utf8_string[++i]; in utf8_to_ucs2() 57 u8 c3 = utf8_string[++i]; in utf8_to_ucs2()
|
/third_party/node/src/ |
D | string_decoder.cc | 33 MaybeLocal<String> utf8_string = String::NewFromUtf8( in MakeString() local 38 if (utf8_string.IsEmpty()) { in MakeString() 42 return utf8_string; in MakeString()
|
/third_party/weston/xwayland/ |
D | selection.c | 171 wm->atom.utf8_string, in data_source_send() 242 if (value[i] == wm->atom.utf8_string) { in weston_wm_get_selection_targets() 339 wm->atom.utf8_string, in weston_wm_send_targets() 608 } else if (selection_request->target == wm->atom.utf8_string || in weston_wm_handle_selection_request() 610 weston_wm_send_data(wm, wm->atom.utf8_string, in weston_wm_handle_selection_request()
|
D | dnd.c | 97 wm->atom.utf8_string, in data_source_send() 160 if (types[i] == wm->atom.utf8_string || in handle_enter()
|
D | xwayland.h | 139 xcb_atom_t utf8_string; member
|
/third_party/re2/re2/testing/ |
D | re2_test.cc | 1076 const char utf8_string[] = { in TEST() local 1091 ASSERT_TRUE(RE2::FullMatch(utf8_string, re_test1)); in TEST() 1093 ASSERT_TRUE(RE2::FullMatch(utf8_string, re_test2)); in TEST() 1099 ASSERT_TRUE(RE2::PartialMatch(utf8_string, re_test3, &s)); in TEST() 1102 ASSERT_TRUE(RE2::PartialMatch(utf8_string, re_test4, &s)); in TEST() 1106 RE2 re_test5(utf8_string, RE2::Latin1); in TEST() 1107 ASSERT_TRUE(RE2::FullMatch(utf8_string, re_test5)); in TEST() 1108 RE2 re_test6(utf8_string); in TEST() 1109 ASSERT_TRUE(RE2::FullMatch(utf8_string, re_test6)); in TEST() 1113 ASSERT_FALSE(RE2::FullMatch(utf8_string, re_test7)); in TEST() [all …]
|
/third_party/boost/libs/spirit/example/support/utree/ |
D | error_handler.hpp | 27 typedef boost::spirit::utf8_string string;
|
/third_party/libphonenumber/cpp/src/phonenumbers/utf/ |
D | unicodetext.h | 448 inline UnicodeText UTF8ToUnicodeText(const string& utf8_string) { in UTF8ToUnicodeText() argument 449 return UTF8ToUnicodeText(utf8_string, true); in UTF8ToUnicodeText()
|
/third_party/ntfs-3g/include/ntfs-3g/ |
D | unistr.h | 117 extern int ntfs_macosx_normalize_utf8(const char *utf8_string, char **target, int composed);
|
/third_party/boost/libs/spirit/repository/test/qi/ |
D | test.hpp | 78 typedef boost::spirit::utf8_string string;
|
/third_party/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 666 std::string utf8_string = u8"\u03BA\u1F79\u03C3\u03BC\u03B5"; in TEST() local 669 std::string to_split = "a," + utf8_string; in TEST() 671 EXPECT_THAT(v, ElementsAre("a", utf8_string)); in TEST() 676 std::string to_split = "a," + utf8_string + ",b"; in TEST() 677 std::string unicode_delimiter = "," + utf8_string + ","; in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 688 std::string utf8_string = u8"\u03BA\u1F79\u03C3\u03BC\u03B5"; in TEST() local 691 std::string to_split = "a," + utf8_string; in TEST() 693 EXPECT_THAT(v, ElementsAre("a", utf8_string)); in TEST() 698 std::string to_split = "a," + utf8_string + ",b"; in TEST() 699 std::string unicode_delimiter = "," + utf8_string + ","; in TEST()
|
/third_party/boost/libs/spirit/test/qi/ |
D | test.hpp | 130 typedef boost::spirit::utf8_string string;
|
/third_party/jerryscript/jerry-ext/include/jerryscript-ext/ |
D | arg.impl.h | 39 JERRYX_ARG_TRANSFORM_FUNC_WITH_OPTIONAL_AND_STRICT (utf8_string)
|
/third_party/glib/gio/ |
D | glocalfileinfo.c | 1143 char *utf8_string; in convert_pwd_string_to_utf8() local 1147 utf8_string = g_locale_to_utf8 (pwd_str, -1, NULL, NULL, NULL); in convert_pwd_string_to_utf8() 1148 if (utf8_string == NULL) in convert_pwd_string_to_utf8() 1149 utf8_string = make_valid_utf8 (pwd_str); in convert_pwd_string_to_utf8() 1152 utf8_string = g_strdup (pwd_str); in convert_pwd_string_to_utf8() 1154 return utf8_string; in convert_pwd_string_to_utf8()
|