HomeSort by relevance Sort by last modified time
    Searched full:combobox_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/ui/views/examples/
combobox_example.cc 29 ComboboxExample::ComboboxExample() : ExampleBase("Combo Box"), combobox_(NULL) {
33 // Delete |combobox_| first as it references |combobox_model_|.
34 delete combobox_;
35 combobox_ = NULL;
39 combobox_ = new Combobox(&combobox_model_);
40 combobox_->set_listener(this);
41 combobox_->SetSelectedIndex(3);
44 container->AddChildView(combobox_);
48 DCHECK_EQ(combobox_, combobox);
examples_window.cc 127 : combobox_(new Combobox(&combobox_model_)),
132 combobox_->set_listener(this);
134 combobox_->ModelChanged();
146 layout->AddView(combobox_);
161 // Delete |combobox_| first as it references |combobox_model_|.
162 delete combobox_;
163 combobox_ = NULL;
190 DCHECK_EQ(combobox, combobox_);
202 Combobox* combobox_; member in class:views::examples::ExamplesWindowContents
combobox_example.h 44 Combobox* combobox_; member in class:views::examples::ComboboxExample
  /external/chromium_org/ui/views/controls/combobox/
combobox_unittest.cc 207 ComboboxTest() : widget_(NULL), combobox_(NULL) {}
221 ASSERT_FALSE(combobox_);
222 combobox_ = new TestCombobox(model_.get());
223 combobox_->set_id(1);
231 container->AddChildView(combobox_);
238 combobox_->RequestFocus();
239 combobox_->SizeToPreferredSize();
272 // |combobox_| will be allocated InitCombobox() and then owned by |widget_|.
273 TestCombobox* combobox_; member in class:views::ComboboxTest
282 EXPECT_EQ(combobox_->selected_index() + 1, model_->GetItemCount())
    [all...]

Completed in 112 milliseconds