• Home
  • Raw
  • Download

Lines Matching refs:idna

126 namespace ada::idna {  namespace
333 namespace ada::idna { namespace
2727 namespace ada::idna { namespace
2866 namespace ada::idna { namespace
7748 namespace ada::idna { namespace
7966 namespace ada::idna { namespace
8187 namespace ada::idna { namespace
9521 namespace ada::idna { namespace
9607 bool is_ok = ada::idna::punycode_to_utf32(puny_segment_ascii, tmp_buffer); in from_ascii_to_ascii()
9611 std::u32string post_map = ada::idna::map(tmp_buffer); in from_ascii_to_ascii()
9644 ada::idna::utf32_length_from_utf8(ut8_string.data(), ut8_string.size()); in to_ascii()
9646 size_t actual_utf32_length = ada::idna::utf8_to_utf32( in to_ascii()
9652 utf32 = ada::idna::map(utf32); in to_ascii()
9679 bool is_ok = ada::idna::punycode_to_utf32(puny_segment_ascii, tmp_buffer); in to_ascii()
9683 std::u32string post_map = ada::idna::map(tmp_buffer); in to_ascii()
9713 bool is_ok = ada::idna::utf32_to_punycode(label_view, out); in to_ascii()
9733 namespace ada::idna { namespace
9746 if (ada::idna::begins_with(label_view, "xn--") && in to_unicode()
9747 ada::idna::is_ascii(label_view)) { in to_unicode()
9749 if (ada::idna::verify_punycode(label_view)) { in to_unicode()
9751 if (ada::idna::punycode_to_utf32(label_view, tmp_buffer)) { in to_unicode()
9752 auto utf8_size = ada::idna::utf8_length_from_utf32(tmp_buffer.data(), in to_unicode()
9755 ada::idna::utf32_to_utf8(tmp_buffer.data(), tmp_buffer.size(), in to_unicode()
10259 std::string idna_ascii = ada::idna::to_ascii(input); in to_ascii()
10284 return ada::idna::to_unicode(input); in to_unicode()
15176 std::string out = ada::idna::to_unicode(std::string_view(input, length)); in ada_idna_to_unicode()
15185 std::string out = ada::idna::to_ascii(std::string_view(input, length)); in ada_idna_to_ascii()