Home
last modified time | relevance | path

Searched refs:scrollable_ (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/ui/views/examples/
Dscroll_view_example.cc64 scrollable_ = new ScrollableView(); in CreateExampleView()
66 scroll_view_->SetContents(scrollable_); in CreateExampleView()
67 scrollable_->SetBounds(0, 0, 1000, 100); in CreateExampleView()
68 scrollable_->SetColor(SK_ColorYELLOW, SK_ColorCYAN); in CreateExampleView()
96 scrollable_->SetBounds(0, 0, 1000, 100); in ButtonPressed()
97 scrollable_->SetColor(SK_ColorYELLOW, SK_ColorCYAN); in ButtonPressed()
99 scrollable_->SetBounds(0, 0, 100, 1000); in ButtonPressed()
100 scrollable_->SetColor(SK_ColorRED, SK_ColorCYAN); in ButtonPressed()
102 scrollable_->SetBounds(0, 0, 1000, 1000); in ButtonPressed()
103 scrollable_->SetColor(SK_ColorRED, SK_ColorGREEN); in ButtonPressed()
[all …]
Dscroll_view_example.h44 ScrollableView* scrollable_; variable
/external/chromium_org/cc/trees/
Dlayer_tree_host_perftest.cc224 scrollable_ = layer_tree_host()->root_layer()->children()[1]; in BuildTree()
225 ASSERT_TRUE(scrollable_.get()); in BuildTree()
230 scrollable_->SetScrollOffset(scrollable_->scroll_offset() + delta); in Layout()
234 scoped_refptr<Layer> scrollable_; member in cc::__anon536228850111::ScrollingLayerTreePerfTest
/external/chromium_org/chrome/browser/ui/views/extensions/
Dextension_install_dialog_view.cc159 CustomScrollableView* scrollable_; member in __anonba72ae0e0111::ExtensionInstallDialogView
358 scrollable_ = new CustomScrollableView(); in ExtensionInstallDialogView()
359 scroll_view_->SetContents(scrollable_); in ExtensionInstallDialogView()
361 views::GridLayout* layout = views::GridLayout::CreatePanel(scrollable_); in ExtensionInstallDialogView()
362 scrollable_->SetLayoutManager(layout); in ExtensionInstallDialogView()
624 gfx::Size scrollable_size = scrollable_->GetPreferredSize(); in ExtensionInstallDialogView()
625 scrollable_->SetBoundsRect(gfx::Rect(scrollable_size)); in ExtensionInstallDialogView()
/external/chromium_org/cc/layers/
Dlayer_impl.h402 void SetScrollable(bool scrollable) { scrollable_ = scrollable; } in SetScrollable()
403 bool scrollable() const { return scrollable_; } in scrollable()
584 bool scrollable_ : 1; variable
Dlayer.cc42 scrollable_(false), in Layer()
714 if (scrollable_ == scrollable) in SetScrollable()
716 scrollable_ = scrollable; in SetScrollable()
920 layer->SetScrollable(scrollable_); in PushPropertiesTo()
Dlayer.h277 bool scrollable() const { return scrollable_; } in scrollable()
576 bool scrollable_ : 1; variable
Dlayer_impl.cc44 scrollable_(false), in LayerImpl()
536 layer->SetScrollable(scrollable_); in PushPropertiesTo()
617 if (scrollable_) in LayerTreeAsJson()
618 result->SetBoolean("Scrollable", scrollable_); in LayerTreeAsJson()