Lines Matching refs:posY_

178         return (r.posX_ == 0 && r.posY_ == 0 && r.width_ == 0 && r.height_ == 0);
196 int32_t y_begin = std::max(rect1.posY_, rect2.posY_);
197 int32_t y_end = std::min(rect1.posY_ + static_cast<int32_t>(rect1.height_),
198 rect2.posY_ + static_cast<int32_t>(rect2.height_));
267 (pointPosY > targetRect.posY_) &&
268 (pointPosY < (targetRect.posY_ + static_cast<int32_t>(targetRect.height_)) - 1)) {
278 (pointPosY >= targetRect.posY_) &&
279 (pointPosY < (targetRect.posY_ + static_cast<int32_t>(targetRect.height_)))) {
289 (pointPosY > rectExceptCorner.posY_ &&
290 pointPosY < (rectExceptCorner.posY_ + static_cast<int32_t>(rectExceptCorner.height_)) - 1)) {
305 if (rect.posY_ == displayRect.posY_) {
375 ret.y += rActial.posY_ - pos.y;
377 ret.y += rOrigin.posY_ - rActial.posY_;
380 ret.y += (pos.y - rActial.posY_) * rOrigin.height_ / rActial.height_;
398 rect.posY_ + transform.pivotY_ * rect.height_, 0 };
442 TransformHelper::Vector3(rect.posX_, rect.posY_, 0), transformMat);
444 TransformHelper::Vector3(rect.posX_ + rect.width_, rect.posY_, 0), transformMat);
446 TransformHelper::Vector3(rect.posX_, rect.posY_ + rect.height_, 0), transformMat);
448 TransformHelper::Vector3(rect.posX_ + rect.width_, rect.posY_ + rect.height_, 0), transformMat);
486 if (rect.posX_ < 0 || rect.posY_ < 0 || rect.width_ == 0 || rect.height_ == 0) {
491 rect.posY_ >= static_cast<int32_t>(windowRect.height_)) {
496 hotArea.posY_ = windowRect.posY_ + rect.posY_;
499 hotArea.height_ = static_cast<uint32_t>(std::min(hotArea.posY_ + rect.height_,
500 windowRect.posY_ + windowRect.height_) - hotArea.posY_);