Lines Matching refs:fixedX
1092 uint16_t fixedX = static_cast<uint16_t>(calculateX);
1094 if (ParamExceedScope(fixedX, fixedY, width, height * fileCount)) {
1095 HILOG_ERROR_I18N("invalid width:%{public}d or height: %{public}d", fixedX, fixedY);
1099 std::vector<int> pixel = GetColorData(fixedX, fixedY, actualHeight, preferredPath);
1250 int fixedX = (int)(x + TZ_X_PLUS);
1255 if (fixedX >= atoi(left.c_str()) && fixedX < atoi(right.c_str())) {
1333 bool I18nTimeZone::ParamExceedScope(const int x, const int y, int fixedX, int fixedY)
1335 if (x < 0 || y < 0 || fixedX == 0 || fixedY == 0) {
1338 if (x > (fixedX - 1) || y > (fixedY - 1)) {