/external/webkit/Source/WebCore/page/animation/ |
D | CompositeAnimation.cpp | 70 KeyframeAnimation* anim = it->second.get(); in clearRenderer() local 71 animationController()->animationWillBeRemoved(anim); in clearRenderer() 72 anim->clear(); in clearRenderer() 94 const Animation* anim = targetStyle->transitions()->animation(i); in updateTransitions() local 95 bool isActiveTransition = anim->duration() || anim->delay() > 0; in updateTransitions() 97 int prop = anim->property(); in updateTransitions() 169 …m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, th… in updateTransitions() 183 ImplicitAnimation* anim = it->second.get(); in updateTransitions() local 184 if (!anim->active()) { in updateTransitions() 185 animationController()->animationWillBeRemoved(anim); in updateTransitions() [all …]
|
D | AnimationBase.cpp | 95 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double… in blendFunc() argument 106 Color premultBlended(blendFunc(anim, premultFrom.red(), premultTo.red(), progress), in blendFunc() 107 blendFunc(anim, premultFrom.green(), premultTo.green(), progress), in blendFunc() 108 blendFunc(anim, premultFrom.blue(), premultTo.blue(), progress), in blendFunc() 109 blendFunc(anim, premultFrom.alpha(), premultTo.alpha(), progress)); in blendFunc() 119 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthS… in blendFunc() argument 121 return LengthSize(blendFunc(anim, from.width(), to.width(), progress), in blendFunc() 122 blendFunc(anim, from.height(), to.height(), progress)); in blendFunc() 125 static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, … in blendFunc() argument 127 return IntSize(blendFunc(anim, from.width(), to.width(), progress), in blendFunc() [all …]
|
D | AnimationBase.h | 140 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); } in setAnimation() argument 218 …static bool blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderSty…
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | AndroidAnimation.cpp | 81 AndroidAnimation::AndroidAnimation(AndroidAnimation* anim) in AndroidAnimation() argument 82 : m_beginTime(anim->m_beginTime) in AndroidAnimation() 83 , m_duration(anim->m_duration) in AndroidAnimation() 84 , m_fillsBackwards(anim->m_fillsBackwards) in AndroidAnimation() 85 , m_fillsForwards(anim->m_fillsForwards) in AndroidAnimation() 86 , m_iterationCount(anim->m_iterationCount) in AndroidAnimation() 87 , m_direction(anim->m_direction) in AndroidAnimation() 88 , m_timingFunction(anim->m_timingFunction) in AndroidAnimation() 89 , m_name(anim->name()) in AndroidAnimation() 90 , m_type(anim->m_type) in AndroidAnimation() [all …]
|
D | AndroidAnimation.h | 42 AndroidAnimation(AndroidAnimation* anim); 83 AndroidOpacityAnimation(AndroidOpacityAnimation* anim); 99 AndroidTransformAnimation(AndroidTransformAnimation* anim);
|
D | GraphicsLayerAndroid.cpp | 691 const Animation* anim, in addAnimation() argument 695 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2) in addAnimation() 701 anim, in addAnimation() 707 anim, in addAnimation() 740 RefPtr<AndroidOpacityAnimation> anim = AndroidOpacityAnimation::create(animation, in createAnimationFromKeyframes() local 744 anim->setName(propertyIdToString(valueList.property())); in createAnimationFromKeyframes() 746 anim->setName(keyframesName); in createAnimationFromKeyframes() 748 m_contentLayer->addAnimation(anim.release()); in createAnimationFromKeyframes() 782 RefPtr<AndroidTransformAnimation> anim = AndroidTransformAnimation::create(animation, in createTransformAnimationsFromKeyframes() local 787 anim->setName(propertyIdToString(valueList.property())); in createTransformAnimationsFromKeyframes() [all …]
|
D | GraphicsLayerAndroid.h | 86 const Animation* anim,
|
D | LayerAndroid.cpp | 250 RefPtr<AndroidAnimation> anim = prpAnim; in addAnimation() local 251 pair<String, int> key(anim->name(), anim->type()); in addAnimation() 252 removeAnimationsForProperty(anim->type()); in addAnimation() 253 m_animations.add(key, anim); in addAnimation()
|
/external/skia/src/views/ |
D | SkWidgetViews.cpp | 45 void init_skin_anim(const char path[], SkAnimator* anim) in init_skin_anim() argument 47 SkASSERT(path && anim); in init_skin_anim() 57 if (!anim->decodeStream(&stream)) in init_skin_anim() 64 void init_skin_anim(SkinEnum se, SkAnimator* anim) in init_skin_anim() argument 66 init_skin_anim(get_skin_enum_path(se), anim); in init_skin_anim() 73 SkAnimator anim; in init_skin_paint() local 76 init_skin_anim(se, &anim); in init_skin_paint() 77 anim.draw(&canvas, paint, 0); in init_skin_paint() 84 SkAnimator anim; in inflate_paint() local 87 if (!anim.decodeDOM(dom, node)) in inflate_paint() [all …]
|
D | SkImageView.cpp | 264 SkAnimator* anim = new SkAnimator; in ensureUriIsLoaded() local 266 if (!anim->decodeURI(fUri.c_str())) in ensureUriIsLoaded() 268 delete anim; in ensureUriIsLoaded() 272 anim->setHostEventSink(this); in ensureUriIsLoaded() 274 fData.fAnim = anim; in ensureUriIsLoaded()
|
D | SkWidgets.cpp | 261 SkAnimator* anim = get_skin_animator(kPushButton_SkinType); 263 if (anim) 273 (void)anim->doUserEvent(evt); 275 anim->draw(canvas, &paint, SkTime::GetMSecs());
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | GraphicsLayerQt.cpp | 370 if (QAbstractAnimation* anim = it->data()) in ~GraphicsLayerQtImpl() local 371 delete anim; in ~GraphicsLayerQtImpl() 1384 …const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & na… in AnimationQtBase() argument 1388 , m_duration(anim->duration() * 1000) in AnimationQtBase() 1389 , m_isAlternate(anim->direction() == Animation::AnimationDirectionAlternate) in AnimationQtBase() 1391 , m_webkitAnimation(anim) in AnimationQtBase() 1427 …const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & na… in AnimationQt() argument 1428 : AnimationQtBase(layer, values, boxSize, anim, name) in AnimationQt() 1437 keyframeValue.timingFunction = anim->timingFunction().get(); in AnimationQt() 1519 …const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & na… in TransformAnimationQt() argument [all …]
|
/external/skia/src/animator/ |
D | SkDisplayPost.cpp | 227 SkAnimator* anim = maker.getAnimator(); in enable() local 231 targetID = anim->getSinkID(); in enable() 237 anim = fTargetMaker->getAnimator(); in enable() 242 anim->onEventPost(new SkEvent(fEvent), targetID); in enable() 244 anim->onEventPostTime(new SkEvent(fEvent), targetID, futureTime); in enable() 276 SkAnimator* anim = fTargetMaker->getAnimator(); in findSinkID() local 277 fSinkID = anim->getSinkID(); in findSinkID()
|
D | SkDisplayApply.cpp | 177 SkAnimateBase* anim = (SkAnimateBase*) (*animPtr)->deepCopy(maker); in deepCopy() local 178 *result->fAnimators.append() = anim; in deepCopy() 179 maker->helperAdd(anim); in deepCopy() 678 SkAnimateBase* anim = *animPtr; in onEndElement() local 680 if (anim->fTarget == NULL || anim->fTargetIsScope) { in onEndElement() 681 anim->fTargetIsScope = true; in onEndElement() 683 anim->fTarget = scope; in onEndElement() 685 anim->setTarget(maker); in onEndElement() 686 anim->onEndElement(maker); // allows animate->fFieldInfo to be set in onEndElement() 688 if (scope != NULL && steps >= 0 && anim->fTarget != scope && anim->fTarget->isDrawable()) in onEndElement() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | GraphicsLayerCA.cpp | 233 …tic bool animationHasStepsTimingFunction(const KeyframeValueList& valueList, const Animation* anim) in animationHasStepsTimingFunction() argument 235 if (anim->timingFunction()->isStepsTimingFunction()) in animationHasStepsTimingFunction() 429 RefPtr<PlatformCAAnimation> anim = fromLayer->animationForKey(animationIdentifier); in moveOrCopyLayerAnimation() local 430 if (!anim) in moveOrCopyLayerAnimation() 436 toLayer->addAnimationForKey(animationIdentifier, anim.get()); in moveOrCopyLayerAnimation() 440 toLayer->addAnimationForKey(animationIdentifier, anim.get()); in moveOrCopyLayerAnimation() 605 …st KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& anim… in addAnimation() argument 609 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2) in addAnimation() 621 if (animationHasStepsTimingFunction(valueList, anim)) in addAnimation() 626 …createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOff… in addAnimation() [all …]
|
/external/webkit/Source/WebCore/platform/animation/ |
D | AnimationList.h | 52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); } in append() argument
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Yuri-Attributes.text | 14 anim id est laborum. 19 mollit anim id est laborum.
|
D | Yuri-Footnotes.text | 7 mollit anim id est laborum. 32 mollit anim id est laborum.
|
/external/icu4c/data/rbnf/ |
D | fil.txt | 31 "6: anim na;", 49 "6: anim;",
|
/external/chromium/chrome/browser/ui/touch/frame/ |
D | touch_browser_frame_view.cc | 257 void TouchBrowserFrameView::AnimationProgressed(const ui::Animation* anim) { in AnimationProgressed() argument 259 ui::Tween::ValueBetween(anim->GetCurrentValue(), kKeyboardHeight, 0)); in AnimationProgressed() 261 ui::Tween::ValueBetween(anim->GetCurrentValue(), 0, kKeyboardHeight)); in AnimationProgressed()
|
/external/chromium/chrome/browser/resources/ |
D | new_new_tab.css | 48 html[anim=false] *, 49 .no-anim, .no-anim *, 354 html[anim=true][enable-section-animations=true] .section { 407 html[anim=true] .section > h2 > .disclosure { 520 html[anim=true][enable-section-animations=true] .maxiview { 524 html[anim=true][enable-section-animations=true] .miniview {
|
/external/skia/include/views/ |
D | SkWidgetViews.h | 49 void init_skin_anim(const char path[], SkAnimator* anim); 50 void init_skin_anim(SkinEnum se, SkAnimator* anim);
|
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/ |
D | WebFullScreenManagerMac.mm | 68 - (void)animationDidStart:(CAAnimation *)anim; 69 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag; 86 - (void)animationDidStart:(CAAnimation *)anim 92 - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
|
/external/pcre/testdata/ |
D | grepinput3 | 4 …int occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderLayerBacking.h | 115 bool startAnimation(double timeOffset, const Animation* anim, const KeyframeList& keyframes);
|