Searched refs:fixedY (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/base/global/i18n/frameworks/intl/src/ |
H A D | i18n_timezone.cpp | 1093 uint16_t fixedY = static_cast<uint16_t>(calculateY); in GetTimezoneIdByLocation() local 1094 if (ParamExceedScope(fixedX, fixedY, width, height * fileCount)) { in GetTimezoneIdByLocation() 1095 HILOG_ERROR_I18N("invalid width:%{public}d or height: %{public}d", fixedX, fixedY); in GetTimezoneIdByLocation() 1098 uint16_t actualHeight = fileCount > 1 ? (fixedY % height) : fixedY; in GetTimezoneIdByLocation() 1099 std::vector<int> pixel = GetColorData(fixedX, fixedY, actualHeight, preferredPath); in GetTimezoneIdByLocation() 1333 bool I18nTimeZone::ParamExceedScope(const int x, const int y, int fixedX, int fixedY) in ParamExceedScope() argument 1335 if (x < 0 || y < 0 || fixedX == 0 || fixedY == 0) { in ParamExceedScope() 1338 if (x > (fixedX - 1) || y > (fixedY - 1)) { in ParamExceedScope()
|
/ohos5.0/base/global/i18n/frameworks/intl/include/ |
H A D | i18n_timezone.h | 105 static bool ParamExceedScope(const int x, const int y, int fixedX, int fixedY);
|