Home
last modified time | relevance | path

Searched refs:GetNumberingSystem (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/global/i18n/frameworks/intl/test/fuzztest/localeinfo_fuzzer/
H A Dlocaleinfo_fuzzer.cpp39 locale->GetNumberingSystem(); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/global/i18n/frameworks/intl/test/fuzztest/numberformat_fuzzer/
H A Dnumberformat_fuzzer.cpp44 formatter.GetNumberingSystem(); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/global/i18n/frameworks/intl/test/fuzztest/datetimeformat_fuzzer/
H A Ddatetimeformat_fuzzer.cpp42 dateTimeFormat.GetNumberingSystem(); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/global/i18n_lite/frameworks/i18n/include/
H A Dnumber_data.h76 static void GetNumberingSystem(const char *numberingSystem, std::string &numberFormatString,
/ohos5.0/base/global/i18n/frameworks/intl/include/
H A Dlocale_info.h41 std::string GetNumberingSystem() const;
H A Dnumber_format.h54 std::string GetNumberingSystem() const;
H A Ddate_time_format.h48 std::string GetNumberingSystem() const;
/ohos5.0/base/global/i18n/frameworks/intl/src/
H A Dnumber_format.cpp420 } else if (!(localeInfo->GetNumberingSystem()).empty()) { in GetDigitsResolvedOptions()
421 map.insert(std::make_pair("numberingSystem", localeInfo->GetNumberingSystem())); in GetDigitsResolvedOptions()
503 std::string NumberFormat::GetNumberingSystem() const in GetNumberingSystem() function in OHOS::Global::I18n::NumberFormat
H A Ddate_time_format.cpp650 } else if (!(localeInfo->GetNumberingSystem()).empty()) { in GetResolvedOptions()
651 map.insert(std::make_pair("numberingSystem", localeInfo->GetNumberingSystem())); in GetResolvedOptions()
727 std::string DateTimeFormat::GetNumberingSystem() const in GetNumberingSystem() function in OHOS::Global::I18n::DateTimeFormat
H A Drelative_time_format.cpp99 numberingSystem = localeInfo->GetNumberingSystem(); in RelativeTimeFormat()
H A Dlocale_info.cpp230 std::string LocaleInfo::GetNumberingSystem() const in GetNumberingSystem() function in OHOS::Global::I18n::LocaleInfo
H A Dlocale_config.cpp1167 if (localNumberSystem.compare(localeInfo.GetNumberingSystem()) != 0) { in GetUsingLocalDigit()
1317 std::string oldNumberSystem = localeInfo.GetNumberingSystem(); in AddLocalDigitToLocale()
/ohos5.0/base/global/i18n/interfaces/js/kits/include/
H A Dintl_addon.h77 static napi_value GetNumberingSystem(napi_env env, napi_callback_info info);
/ohos5.0/base/global/i18n_lite/frameworks/i18n/src/
H A Dnumber_data.cpp282 void NumberData::GetNumberingSystem(const char *numberingSystem, std::string &numberFormatString, in GetNumberingSystem() function in NumberData
H A Dnumber_format_impl.cpp80 NumberData::GetNumberingSystem(numberDigits, numebrSystemFormat, unprocessedNumberDigit); in Init()
/ohos5.0/base/global/i18n/frameworks/intl/test/unittest/
H A Dintl_test.cpp195 EXPECT_EQ(loc->GetNumberingSystem(), "jpan");
1444 res = formatter->GetNumberingSystem();
1605 string res = formatter->GetNumberingSystem();
1918 res = locale->GetNumberingSystem();
/ohos5.0/base/global/i18n/interfaces/js/kits/src/
H A Dintl_addon.cpp64 DECLARE_NAPI_GETTER_SETTER("numberingSystem", GetNumberingSystem, SetProperty), in InitLocale()
829 napi_value IntlAddon::GetNumberingSystem(napi_env env, napi_callback_info info) in GetNumberingSystem() function in OHOS::Global::I18n::IntlAddon
841 std::string value = obj->locale_->GetNumberingSystem(); in GetNumberingSystem()