Home | History | Annotate | Download | only in trees

Lines Matching defs:left_input

2099   LayerSelectionBound left_input;
2100 left_input.type = SELECTION_BOUND_LEFT;
2101 left_input.edge_top = gfx::PointF(10, 10);
2102 left_input.edge_bottom = gfx::PointF(10, 20);
2103 left_input.layer_id = root_layer_id;
2119 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2121 EXPECT_EQ(left_input.type, left_output.type);
2122 EXPECT_EQ(left_input.edge_bottom, left_output.edge_bottom);
2123 EXPECT_EQ(left_input.edge_top, left_output.edge_top);
2205 LayerSelectionBound left_input;
2206 left_input.type = SELECTION_BOUND_LEFT;
2207 left_input.edge_top = gfx::PointF(25, 10);
2208 left_input.edge_bottom = gfx::PointF(25, 30);
2209 left_input.layer_id = clipped_layer_id;
2216 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2221 EXPECT_EQ(left_input.type, left_output.type);
2222 gfx::PointF expected_left_output_top = left_input.edge_top;
2223 gfx::PointF expected_left_output_bottom = left_input.edge_bottom;
2239 left_input.edge_top = gfx::PointF(-25, 0);
2240 left_input.edge_bottom = gfx::PointF(-25, 20);
2241 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2245 left_input.edge_top = gfx::PointF(0, -25);
2246 left_input.edge_bottom = gfx::PointF(0, -5);
2247 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2252 left_input.edge_top = gfx::PointF(0, -20);
2253 left_input.edge_bottom = gfx::PointF(0, 1);
2254 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2311 LayerSelectionBound left_input;
2312 left_input.type = SELECTION_BOUND_LEFT;
2313 left_input.edge_top = gfx::PointF(10, 10);
2314 left_input.edge_bottom = gfx::PointF(10, 30);
2315 left_input.layer_id = root_layer_id;
2322 host_impl().active_tree()->RegisterSelection(left_input, right_input);
2328 EXPECT_EQ(left_input.type, left_output.type);
2329 gfx::PointF expected_left_output_top = left_input.edge_top;
2330 gfx::PointF expected_left_output_bottom = left_input.edge_bottom;
2333 EXPECT_EQ(left_input.edge_top, left_output.edge_top);
2334 EXPECT_EQ(left_input.edge_bottom, left_output.edge_bottom);