Searched defs:animate (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/chrome/browser/ui/views/
H A Dwrench_toolbar_button.cc24 bool animate) {
25 wrench_icon_painter_->SetSeverity(severity, animate);
23 SetSeverity(WrenchIconPainter::Severity severity, bool animate) argument
H A Ddropdown_bar_host.cc97 void DropdownBarHost::Show(bool animate) { argument
104 if (!animate || disable_animations_during_testing_) {
125 void DropdownBarHost::Hide(bool animate) { argument
128 if (animate && !disable_animations_during_testing_ &&
/external/chromium_org/content/renderer/
H A Drender_view_impl_android.cc27 bool animate) {
38 compositor_->UpdateTopControlsState(constraints, current, animate);
45 bool animate) {
50 compositor_->UpdateTopControlsState(constraints_cc, current_cc, animate);
25 OnUpdateTopControlsState(bool enable_hiding, bool enable_showing, bool animate) argument
43 UpdateTopControlsState(TopControlsState constraints, TopControlsState current, bool animate) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
H A DWebActiveGestureAnimation.cpp56 bool WebActiveGestureAnimation::animate(double time) function in class:WebKit::WebActiveGestureAnimation
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAbsSpinner.java27 public void setSelection(int position, boolean animate) { argument
29 animatedTransition = animate;
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.cc44 void InfoBarArrowModel::ShowArrowFor(InfoBar* bar, bool animate) { argument
59 if (animate) {
H A Dinfobar_container_gtk.cc149 bool animate) {
171 last_bar->ShowArrowFor(this_bar, animate);
173 UpdateToolbarInfoBarState(this_bar, animate);
178 void InfoBarContainerGtk::AddInfoBar(InfoBarDelegate* delegate, bool animate) { argument
185 if (animate)
190 ShowArrowForDelegate(delegate, animate);
194 bool animate) {
195 if (animate) {
211 ShowArrowForDelegate(next_delegate, animate);
215 bool animate) {
148 ShowArrowForDelegate(InfoBarDelegate* delegate, bool animate) argument
193 RemoveInfoBar(InfoBarDelegate* delegate, bool animate) argument
214 UpdateToolbarInfoBarState(InfoBar* infobar, bool animate) argument
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar.cc29 void InfoBar::Show(bool animate) { argument
30 if (animate) {
38 void InfoBar::Hide(bool animate) { argument
39 PlatformSpecificHide(animate);
40 if (animate) {
H A Dinfobar.h38 // Makes the infobar visible. If |animate| is true, the infobar is then
40 void Show(bool animate);
42 // Makes the infobar hidden. If |animate| is true, the infobar is first
45 void Hide(bool animate);
71 // out) as we animate open and closed.
81 virtual void PlatformSpecificHide(bool animate) {} argument
H A Dinfobar_container.cc164 bool animate,
173 infobar->Show(animate);
192 // When the first infobar is animating closed, we animate the second infobar's
163 AddInfoBar(InfoBar* infobar, bool animate, CallbackStatus callback_status) argument
/external/chromium_org/chrome/browser/infobars/
H A Dinfobar_service.cc101 // Destroy all remaining InfoBars. It's important to not animate here so that
161 bool animate) {
189 InfoBarRemovedDetails removed_details(infobar, animate);
196 void InfoBarService::RemoveAllInfoBars(bool animate) { argument
198 RemoveInfoBarInternal(infobars_.back(), animate);
160 RemoveInfoBarInternal(InfoBarDelegate* infobar, bool animate) argument
H A Dinfobar.cc54 void InfoBar::Show(bool animate) { argument
55 PlatformSpecificShow(animate);
56 if (animate) {
64 void InfoBar::Hide(bool animate) { argument
65 PlatformSpecificHide(animate);
66 if (animate) {
H A Dinfobar.h53 // Makes the infobar visible. If |animate| is true, the infobar is then
55 void Show(bool animate);
57 // Makes the infobar hidden. If |animate| is true, the infobar is first
60 void Hide(bool animate);
89 // out) as we animate open and closed.
101 virtual void PlatformSpecificShow(bool animate) {} argument
102 virtual void PlatformSpecificHide(bool animate) {} argument
H A Dinfobar_container.cc202 bool animate,
212 infobar->Show(animate);
231 // When the first infobar is animating closed, we animate the second infobar's
200 AddInfoBar(InfoBar* infobar, size_t position, bool animate, CallbackStatus callback_status) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DPageWidgetDelegate.cpp57 void PageWidgetDelegate::animate(Page* page, double monotonicFrameBeginTime) function in class:WebKit::PageWidgetDelegate
/external/chromium_org/cc/input/
H A Dtop_controls_manager.cc60 bool animate) {
83 if (animate) {
58 UpdateTopControlsState(TopControlsState constraints, TopControlsState current, bool animate) argument
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dwrench_icon_painter.cc59 // Only animate low severity upgrades once.
81 void WrenchIconPainter::SetSeverity(Severity severity, bool animate) { argument
88 if (severity_ == SEVERITY_NONE || !animate)
96 // Again, animate the bars left to right.
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayEvent.cpp180 SkAnimateBase* animate = (SkAnimateBase*) fTarget; local
181 animate->setHasEndEvent();
H A DSkDisplayTypes.cpp20 SkAnimateBase* animate = (SkAnimateBase* ) *depPtr; local
21 animate->setChanged(true);
/external/skia/src/animator/
H A DSkDisplayEvent.cpp180 SkAnimateBase* animate = (SkAnimateBase*) fTarget; local
181 animate->setHasEndEvent();
H A DSkDisplayTypes.cpp20 SkAnimateBase* animate = (SkAnimateBase* ) *depPtr; local
21 animate->setChanged(true);
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_host.cc82 void DropdownBarHost::Show(bool animate) { argument
87 if (!animate || disable_animations_during_testing_) {
109 void DropdownBarHost::Hide(bool animate) { argument
112 if (animate && !disable_animations_during_testing_) {
H A Dfind_bar_host.cc90 void FindBarHost::Show(bool animate) { argument
91 DropdownBarHost::Show(animate);
94 void FindBarHost::Hide(bool animate) { argument
95 DropdownBarHost::Hide(animate);
277 // to do this before changing position, so that when we animate the closure
/external/chromium_org/chrome/browser/ui/gtk/infobars/
H A Dextension_infobar_gtk.cc61 void ExtensionInfoBarGtk::PlatformSpecificHide(bool animate) { argument
/external/chromium_org/chrome/browser/ui/gtk/panels/
H A Dpanel_stack_window_gtk.cc95 void PanelStackWindowGtk::BeginBatchUpdatePanelBounds(bool animate) { argument

Completed in 506 milliseconds

123