HomeSort by relevance Sort by last modified time
    Searched defs:PlatformCAAnimation (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp 30 #include "PlatformCAAnimation.h"
44 static CFStringRef toCACFFillModeType(PlatformCAAnimation::FillModeType type)
47 case PlatformCAAnimation::NoFillMode:
48 case PlatformCAAnimation::Forwards: return kCACFFillModeForwards;
49 case PlatformCAAnimation::Backwards: return kCACFFillModeBackwards;
50 case PlatformCAAnimation::Both: return kCACFFillModeBoth;
56 static PlatformCAAnimation::FillModeType fromCACFFillModeType(CFStringRef string)
59 return PlatformCAAnimation::Backwards;
62 return PlatformCAAnimation::Both;
64 return PlatformCAAnimation::Forwards
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h 53 class PlatformCAAnimation;
56 class PlatformCAAnimation : public RefCounted<PlatformCAAnimation> {
64 static PassRefPtr<PlatformCAAnimation> create(AnimationType, const String& keyPath);
65 static PassRefPtr<PlatformCAAnimation> create(PlatformAnimationRef);
67 ~PlatformCAAnimation();
71 PassRefPtr<PlatformCAAnimation> copy() const;
100 void copyTimingFunctionFrom(const PlatformCAAnimation*);
116 void copyFromValueFrom(const PlatformCAAnimation*);
122 void copyToValueFrom(const PlatformCAAnimation*);
    [all...]

Completed in 43 milliseconds