Home
last modified time | relevance | path

Searched refs:GetHourCycle (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/global/i18n/frameworks/intl/test/fuzztest/localeinfo_fuzzer/
H A Dlocaleinfo_fuzzer.cpp38 locale->GetHourCycle(); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/global/i18n/frameworks/intl/test/fuzztest/datetimeformat_fuzzer/
H A Ddatetimeformat_fuzzer.cpp39 dateTimeFormat.GetHourCycle(); in DoSomethingInterestingWithMyAPI()
/ohos5.0/base/global/i18n/frameworks/intl/include/
H A Dlocale_info.h40 std::string GetHourCycle() const;
H A Ddate_time_format.h45 std::string GetHourCycle() const;
/ohos5.0/base/global/i18n/frameworks/intl/src/
H A Ddate_time_format.cpp129 hourCycle = localeInfo->GetHourCycle(); in InitWithLocale()
634 } else if (!(localeInfo->GetHourCycle()).empty()) { in GetResolvedOptions()
635 map.insert(std::make_pair("hourCycle", localeInfo->GetHourCycle())); in GetResolvedOptions()
712 std::string DateTimeFormat::GetHourCycle() const in GetHourCycle() function in OHOS::Global::I18n::DateTimeFormat
H A Dlocale_info.cpp225 std::string LocaleInfo::GetHourCycle() const in GetHourCycle() function in OHOS::Global::I18n::LocaleInfo
/ohos5.0/base/global/i18n/interfaces/js/kits/include/
H A Dintl_addon.h76 static napi_value GetHourCycle(napi_env env, napi_callback_info info);
/ohos5.0/base/global/i18n/frameworks/intl/test/unittest/
H A Dintl_test.cpp169 EXPECT_EQ(dateFormat->GetHourCycle(), "h12");
194 EXPECT_EQ(loc->GetHourCycle(), "h11");
1565 res = formatter->GetHourCycle();
1916 res = locale->GetHourCycle();
/ohos5.0/base/global/i18n/interfaces/js/kits/src/
H A Dintl_addon.cpp63 DECLARE_NAPI_GETTER_SETTER("hourCycle", GetHourCycle, SetProperty), in InitLocale()
806 napi_value IntlAddon::GetHourCycle(napi_env env, napi_callback_info info) in GetHourCycle() function in OHOS::Global::I18n::IntlAddon
818 std::string value = obj->locale_->GetHourCycle(); in GetHourCycle()