Lines Matching defs:unicode

99  * @see https://www.unicode.org/reports/tr46/#Validity_Criteria
164 * @brief Definitions of the character sets used by unicode functions.
174 * @brief Declaration of the character sets used by unicode functions.
486 * @brief Includes the definitions for unicode character sets.
4424 /* begin file include/ada/unicode.h */
4426 * @file unicode.h
4427 * @brief Definitions for all unicode specific functions.
4437 * @namespace ada::unicode
4438 * @brief Includes the definitions for unicode operations
4440 namespace ada::unicode {
4471 * https://www.unicode.org/Public/idna/15.0.0/IdnaMappingTable.txt
4486 * @see https://www.unicode.org/reports/tr46/#ToUnicode
4627 } // namespace ada::unicode
4630 /* end file include/ada/unicode.h */
5048 * @see https://www.unicode.org/reports/tr46/#ToASCII
5608 hash = unicode::percent_encode(input,
5614 query = ada::unicode::percent_encode(input, query_percent_encode_set);
5744 /* begin file include/ada/unicode-inl.h */
5746 * @file unicode-inl.h
5747 * @brief Definitions for unicode operations.
5754 * @namespace ada::unicode
5755 * @brief Includes the declarations for unicode operations
5757 namespace ada::unicode {
5766 } // namespace ada::unicode
5769 /* end file include/ada/unicode-inl.h */
5846 bool encoding_required = unicode::percent_encode<true>(
5979 unicode::percent_encode<true>(input, query_percent_encode_set, buffer);
5996 ada::unicode::percent_encode_index(input, query_percent_encode_set);
6006 ada::unicode::percent_encode(input, query_percent_encode_set);
6891 params.emplace_back(unicode::percent_decode(name, name.find('%')), "");
6899 params.emplace_back(unicode::percent_decode(name, name.find('%')),
6900 unicode::percent_decode(value, value.find('%')));
6971 auto key = ada::unicode::percent_encode(params[i].first, character_set);
6972 auto value = ada::unicode::percent_encode(params[i].second, character_set);