Home | History | Annotate | Download | only in autocomplete

Lines Matching full:selection_start

172     size_t selection_start, selection_end;
173 location_bar->location_entry()->GetSelectionBounds(&selection_start,
175 EXPECT_EQ(1U, selection_start);
189 size_t selection_start, selection_end;
190 location_bar->location_entry()->GetSelectionBounds(&selection_start,
192 EXPECT_EQ(1U, selection_start);
207 size_t selection_start, selection_end;
208 location_bar->location_entry()->GetSelectionBounds(&selection_start,
210 EXPECT_EQ(1U, selection_start);
225 size_t selection_start, selection_end;
226 location_bar->location_entry()->GetSelectionBounds(&selection_start,
228 EXPECT_EQ(1U, std::min(selection_start, selection_end));
229 EXPECT_EQ(4U, std::max(selection_start, selection_end));
244 size_t selection_start, selection_end;
245 location_bar->location_entry()->GetSelectionBounds(&selection_start,
247 EXPECT_EQ(4U, std::min(selection_start, selection_end));
248 EXPECT_EQ(7U, std::max(selection_start, selection_end));