Lines Matching refs:w11ll

2769   //     w11ll   3,4
2783 Window* w11ll = new Window(NULL);
2784 w11ll->Init(WINDOW_LAYER_NONE);
2785 w11ll->SetBounds(gfx::Rect(3, 4, 100, 100));
2786 w1ll->AddChild(w11ll);
2791 w11ll->AddChild(w111);
2812 EXPECT_EQ("3,4 100x100", w11ll->bounds().ToString());
2830 EXPECT_EQ("3,4 100x100", w11ll->bounds().ToString());
2849 // w11ll 3,4
2863 Window* w11ll = new Window(NULL);
2864 w11ll->Init(WINDOW_LAYER_NONE);
2865 w11ll->SetBounds(gfx::Rect(3, 4, 100, 100));
2866 w1ll->AddChild(w11ll);
2871 w11ll->AddChild(w111);
2898 w11ll->SetBounds(gfx::Rect(5, 6, 100, 100));
2899 EXPECT_EQ("5,6 100x100", w11ll->bounds().ToString());
2900 EXPECT_EQ("5,6 100x100", w11ll->GetTargetBounds().ToString());
2961 // w11ll 3,4 11x12
2979 Window* w11ll = new Window(&w11ll_delegate);
2980 w11ll->Init(WINDOW_LAYER_NONE);
2981 w11ll->SetBounds(gfx::Rect(3, 4, 11, 12));
2982 w11ll->Show();
2983 w1ll->AddChild(w11ll);
2989 w11ll->AddChild(w111);
3031 // w11ll 3,4
3045 Window* w11ll = new Window(NULL);
3046 w11ll->Init(WINDOW_LAYER_NONE);
3047 w11ll->SetBounds(gfx::Rect(3, 4, 100, 100));
3048 w1ll->AddChild(w11ll);
3053 w11ll->AddChild(w111);
3067 // w111->w11ll
3068 EXPECT_EQ("5,6", ConvertPointToTargetString(w111, w11ll));
3082 // w11ll->w111
3083 EXPECT_EQ("-5,-6", ConvertPointToTargetString(w11ll, w111));
3085 // w11ll->w11ll
3086 EXPECT_EQ("3,4", ConvertPointToTargetString(w11ll, w1ll));
3088 // w11ll->root
3089 EXPECT_EQ("4,6", ConvertPointToTargetString(w11ll, &root));
3091 // w11ll->w12
3092 EXPECT_EQ("-4,-4", ConvertPointToTargetString(w11ll, w12));