Home | History | Annotate | Download | only in ash

Lines Matching defs:w1

559   views::Widget* w1 = CreateTestWidget(gfx::Rect(10, 10, 100, 100));
561 w1, gfx::Rect(50, 50, 50, 50), false /* transient */);
567 w1, gfx::Rect(10, 10, 40, 40), true /* child */);
569 w1, gfx::Rect(1300, 100, 80, 80), false /* transient */);
571 EXPECT_EQ(root_windows[0], w1->GetNativeView()->GetRootWindow());
585 w1->SetBounds(gfx::Rect(1100,10,100,100));
710 views::Widget* w1 = CreateTestWidget(gfx::Rect(10, 10, 50, 50));
711 EXPECT_EQ(root_windows[0], w1->GetNativeView()->GetRootWindow());
712 w1->SetBounds(gfx::Rect(150, 10, 50, 50));
713 EXPECT_EQ(root_windows[1], w1->GetNativeView()->GetRootWindow());
717 w1->GetNativeView()->SetProperty(internal::kStayInSameRootWindowKey, true);
718 w1->SetBounds(gfx::Rect(10, 10, 50, 50));
719 EXPECT_EQ(root_windows[1], w1->GetNativeView()->GetRootWindow());
722 w1->GetNativeView()->ClearProperty(internal::kStayInSameRootWindowKey);
723 w1->SetBounds(gfx::Rect(10, 10, 50, 50));
724 EXPECT_EQ(root_windows[0], w1->GetNativeView()->GetRootWindow());