Searched refs:IcuPatternEntry (Results 1 – 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_date_time_format.h | 47 using IcuPatternEntry = std::pair<std::string, std::string>; variable 51 IcuPatternDesc(std::string property, const std::vector<IcuPatternEntry> &pairs, in IcuPatternDesc() 63 std::vector<IcuPatternEntry> pairs; // NOLINT(misc-non-private-member-variables-in-classes)
|
D | js_date_time_format.cpp | 53 const std::vector<IcuPatternEntry> ICU_WEEKDAY_PE = { 57 const std::vector<IcuPatternEntry> ICU_ERA_PE = {{"GGGGG", "narrow"}, {"GGGG", "long"}, {"GGG", "sh… 58 const std::vector<IcuPatternEntry> ICU_YEAR_PE = {{"yy", "2-digit"}, {"y", "numeric"}}; 59 const std::vector<IcuPatternEntry> ICU_MONTH_PE = { 63 const std::vector<IcuPatternEntry> ICU_DAY_PE = {{"dd", "2-digit"}, {"d", "numeric"}}; 64 const std::vector<IcuPatternEntry> ICU_DAY_PERIOD_PE = { 68 const std::vector<IcuPatternEntry> ICU_HOUR_PE = { 72 const std::vector<IcuPatternEntry> ICU_MINUTE_PE = {{"mm", "2-digit"}, {"m", "numeric"}}; 73 const std::vector<IcuPatternEntry> ICU_SECOND_PE = {{"ss", "2-digit"}, {"s", "numeric"}}; 74 const std::vector<IcuPatternEntry> ICU_YIME_ZONE_NAME_PE = {{"zzzz", "long"}, {"z", "short"}};
|