mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 08:34:58 +00:00
71 lines
2.8 KiB
C++
71 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <AK/String.h>
|
|
#include <AK/StringView.h>
|
|
#include <AK/Types.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibUnicode/Forward.h>
|
|
|
|
namespace Unicode::Detail {
|
|
|
|
struct Symbols {
|
|
static Symbols const& ensure_loaded();
|
|
|
|
// Loaded from UnicodeData.cpp:
|
|
|
|
Optional<String> (*code_point_display_name)(u32) { nullptr };
|
|
|
|
u32 (*canonical_combining_class)(u32 code_point) { nullptr };
|
|
|
|
u32 (*simple_uppercase_mapping)(u32) { nullptr };
|
|
u32 (*simple_lowercase_mapping)(u32) { nullptr };
|
|
Span<SpecialCasing const* const> (*special_case_mapping)(u32 code_point) { nullptr };
|
|
|
|
Optional<GeneralCategory> (*general_category_from_string)(StringView) { nullptr };
|
|
bool (*code_point_has_general_category)(u32, GeneralCategory) { nullptr };
|
|
|
|
Optional<Property> (*property_from_string)(StringView) { nullptr };
|
|
bool (*code_point_has_property)(u32, Property) { nullptr };
|
|
|
|
Optional<Script> (*script_from_string)(StringView) { nullptr };
|
|
bool (*code_point_has_script)(u32, Script) { nullptr };
|
|
bool (*code_point_has_script_extension)(u32, Script) { nullptr };
|
|
|
|
// Loaded from UnicodeLocale.cpp:
|
|
|
|
Optional<Locale> (*locale_from_string)(StringView) { nullptr };
|
|
|
|
Optional<StringView> (*get_locale_language_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_territory_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_script_tag_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_long_currency_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_short_currency_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_narrow_currency_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_numeric_currency_mapping)(StringView, StringView) { nullptr };
|
|
Optional<StringView> (*get_locale_key_mapping)(StringView, StringView) { nullptr };
|
|
|
|
Optional<ListPatterns> (*get_locale_list_pattern_mapping)(StringView, StringView, StringView) { nullptr };
|
|
|
|
Optional<StringView> (*resolve_language_alias)(StringView) { nullptr };
|
|
Optional<StringView> (*resolve_territory_alias)(StringView) { nullptr };
|
|
Optional<StringView> (*resolve_script_tag_alias)(StringView) { nullptr };
|
|
Optional<StringView> (*resolve_variant_alias)(StringView) { nullptr };
|
|
Optional<StringView> (*resolve_subdivision_alias)(StringView) { nullptr };
|
|
|
|
void (*resolve_complex_language_aliases)(LanguageID&);
|
|
|
|
Optional<LanguageID> (*add_likely_subtags)(LanguageID const&);
|
|
Optional<String> (*resolve_most_likely_territory)(LanguageID const&);
|
|
|
|
private:
|
|
Symbols() = default;
|
|
};
|
|
|
|
}
|