Lines Matching defs:currentView
760 UIView* currentView = this;
761 UIView* topView = currentView;
764 while (currentView != nullptr) {
765 if (currentView->GetOrigRect().IsContains(rect) && currentView->IsVisible()) {
766 if (currentView->GetStyle(STYLE_BACKGROUND_OPA) == OPA_OPAQUE && currentView->OnPreDraw(copyRect) &&
767 currentView->GetOpaScale() == OPA_OPAQUE) {
768 topView = currentView;
770 if (currentView->IsViewGroup() && stackCount < COMPONENT_NESTING_DEPTH) {
771 g_viewStack[stackCount++] = currentView;
772 currentView = static_cast<UIViewGroup*>(currentView)->GetChildrenRenderHead();
776 currentView = currentView->GetNextRenderSibling();
779 currentView = (g_viewStack[stackCount])->GetNextRenderSibling();
802 UIView* currentView = static_cast<const UIViewGroup*>(root)->GetChildrenRenderHead();
809 if (currentView == subView) {
812 if (currentView == nullptr) {
813 currentView = parent->GetNextRenderSibling();
816 } else if (currentView->IsViewGroup()) {
817 parent = currentView;
818 currentView = static_cast<UIViewGroup*>(currentView)->GetChildrenRenderHead();
821 currentView = currentView->GetNextRenderSibling();