Searched refs:animate (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_container_gtk.h56 void ShowArrowForDelegate(InfoBarDelegate* delegate, bool animate);
60 void AddInfoBar(InfoBarDelegate* delegate, bool animate);
65 void RemoveInfoBar(InfoBarDelegate* delegate, bool animate);
69 void UpdateToolbarInfoBarState(InfoBar* infobar, bool 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...]
H A Dinfobar_arrow_model.h36 void ShowArrowFor(InfoBar* bar, bool animate);
H A Dinfobar_gtk.h66 void ShowArrowFor(InfoBar* other, bool animate);
/external/skia/legacy/src/animator/
H A DSkAnimateActive.cpp142 SkAnimateBase* animate = fAnimators[index]; local
143 SkMSec duration = animate->dur;
151 // int entries = animate->entries();
153 // value.fOperand = animate->getValues()[entries - 1];
154 // value.fType = animate->getValuesType();
171 SkAnimateBase* animate = fAnimators[index]; local
173 int count = animate->components();
174 if (animate->formula.size() > 0) {
177 bool success = animate->fFieldInfo->setValue(fMaker, &values, 0, 0, NULL,
178 animate
201 SkAnimateBase* animate = fAnimators[index]; local
237 SkAnimateBase* animate = fAnimators[index]; local
273 SkAnimateBase* animate = fAnimators[index]; local
301 SkAnimateBase* animate = fAnimators[index]; local
332 SkAnimateBase* animate = fAnimators[index]; local
343 SkAnimateBase* animate = fAnimators[index]; local
[all...]
H A DSkDisplayApply.cpp456 SkAnimateBase* animate = fActive->fAnimators[index]; local
457 const SkMemberInfo* info = animate->fFieldInfo;
461 SkDisplayable* target = getTarget(animate);
510 SkDrawable* SkApply::getTarget(SkAnimateBase* animate) { argument
511 if (animate->fTargetIsScope == false || mode != kMode_create)
512 return animate->fTarget;
571 SkAnimateBase* animate = fActive->fAnimators[inner]; local
572 if (animate->fChanged) {
573 animate->fChanged = false;
574 animate
694 SkAnimateBase* animate = *animPtr; local
737 SkAnimateBase* animate = fActive->fAnimators[index]; local
781 SkAnimateBase* animate = (SkAnimateBase*) scriptValue.fOperand.fDisplayable; local
[all...]
/external/skia/src/animator/
H A DSkAnimateActive.cpp142 SkAnimateBase* animate = fAnimators[index]; local
143 SkMSec duration = animate->dur;
151 // int entries = animate->entries();
153 // value.fOperand = animate->getValues()[entries - 1];
154 // value.fType = animate->getValuesType();
171 SkAnimateBase* animate = fAnimators[index]; local
173 int count = animate->components();
174 if (animate->formula.size() > 0) {
177 SkDEBUGCODE(bool success = ) animate->fFieldInfo->setValue(fMaker, &values, 0, 0, NULL,
178 animate
201 SkAnimateBase* animate = fAnimators[index]; local
237 SkAnimateBase* animate = fAnimators[index]; local
273 SkAnimateBase* animate = fAnimators[index]; local
301 SkAnimateBase* animate = fAnimators[index]; local
332 SkAnimateBase* animate = fAnimators[index]; local
343 SkAnimateBase* animate = fAnimators[index]; local
[all...]
H A DSkDisplayApply.cpp456 SkAnimateBase* animate = fActive->fAnimators[index]; local
457 const SkMemberInfo* info = animate->fFieldInfo;
461 SkDisplayable* target = getTarget(animate);
510 SkDrawable* SkApply::getTarget(SkAnimateBase* animate) { argument
511 if (animate->fTargetIsScope == false || mode != kMode_create)
512 return animate->fTarget;
571 SkAnimateBase* animate = fActive->fAnimators[inner]; local
572 if (animate->fChanged) {
573 animate->fChanged = false;
574 animate
694 SkAnimateBase* animate = *animPtr; local
737 SkAnimateBase* animate = fActive->fAnimators[index]; local
781 SkAnimateBase* animate = (SkAnimateBase*) scriptValue.fOperand.fDisplayable; local
[all...]
/external/chromium/chrome/browser/ui/cocoa/infobars/
H A Dinfobar_container_controller.h113 - (void)addInfoBar:(InfoBarDelegate*)delegate animate:(BOOL)animate;
118 animate:(BOOL)animate;
/external/chromium/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_actions_container_view.h67 - (void)resizeToWidth:(CGFloat)width animate:(BOOL)animate;
H A Dbrowser_action_button.h64 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
H A Dbrowser_actions_controller.h88 - (void)resizeContainerAndAnimate:(BOOL)animate;
/external/chromium/chrome/browser/ui/find_bar/
H A Dfind_bar.h30 // If |animate| is true, we try to slide the find bar in.
31 virtual void Show(bool animate) = 0;
33 // Hide the find bar. If |animate| is true, we try to slide the find bar
35 virtual void Hide(bool animate) = 0;
/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/views/infobars/
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.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_container.h111 // Adds |infobar| to this container and calls Show() on it. |animate| is
118 bool animate,
/external/chromium/chrome/browser/ui/cocoa/find_bar/
H A Dfind_bar_bridge.h54 virtual void Show(bool animate);
55 virtual void Hide(bool animate);
H A Dfind_bar_cocoa_controller.h76 - (void)showFindBar:(BOOL)animate;
77 - (void)hideFindBar:(BOOL)animate;
/external/chromium/chrome/browser/ui/cocoa/
H A Dfullscreen_controller.h103 - (void)ensureOverlayShownWithAnimation:(BOOL)animate delay:(BOOL)delay;
104 - (void)ensureOverlayHiddenWithAnimation:(BOOL)animate delay:(BOOL)delay;
H A Dgradient_button_cell.h85 - (void)setMouseInside:(BOOL)flag animate:(BOOL)animate;
/external/chromium/chrome/browser/ui/views/
H A Dfind_bar_host.h52 virtual void Show(bool animate);
53 virtual void Hide(bool animate);
H A Ddropdown_bar_host.h61 virtual void Show(bool animate);
63 virtual void Hide(bool animate);
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

Completed in 379 milliseconds

1234