HomeSort by relevance Sort by last modified time
    Searched refs:StyleKeyframe (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSKeyframeRule.h 40 class StyleKeyframe FINAL : public RefCountedWillBeGarbageCollectedFinalized<StyleKeyframe> {
43 static PassRefPtrWillBeRawPtr<StyleKeyframe> create()
45 return adoptRefWillBeNoop(new StyleKeyframe());
47 ~StyleKeyframe();
55 // Used by BisonCSSParser when constructing a new StyleKeyframe.
69 StyleKeyframe();
93 CSSKeyframeRule(StyleKeyframe*, CSSKeyframesRule* parent);
95 RefPtrWillBeMember<StyleKeyframe> m_keyframe;
CSSKeyframeRule.cpp 38 StyleKeyframe::StyleKeyframe()
42 StyleKeyframe::~StyleKeyframe()
46 String StyleKeyframe::keyText() const
64 void StyleKeyframe::setKeyText(const String& keyText)
74 const Vector<double>& StyleKeyframe::keys() const
87 void StyleKeyframe::setKeys(PassOwnPtr<Vector<double> > keys)
95 MutableStylePropertySet& StyleKeyframe::mutableProperties()
102 void StyleKeyframe::setProperties(PassRefPtr<StylePropertySet> properties
    [all...]
CSSKeyframesRule.h 37 class StyleKeyframe;
46 const WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >& keyframes() const { return m_keyframes; }
48 void parserAppendKeyframe(PassRefPtrWillBeRawPtr<StyleKeyframe>);
49 void wrapperAppendKeyframe(PassRefPtrWillBeRawPtr<StyleKeyframe>);
68 WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> > m_keyframes;
CSSKeyframesRule.cpp 55 void StyleRuleKeyframes::parserAppendKeyframe(PassRefPtrWillBeRawPtr<StyleKeyframe> keyframe)
62 void StyleRuleKeyframes::wrapperAppendKeyframe(PassRefPtrWillBeRawPtr<StyleKeyframe> keyframe)
128 RefPtrWillBeRawPtr<StyleKeyframe> keyframe = parser.parseKeyframeRule(styleSheet ? styleSheet->contents() : 0, ruleText);
CSSGrammar.y 81 WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >* keyframeRuleList;
92 StyleKeyframe* keyframe;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser.h 65 class StyleKeyframe;
69 class StyleKeyframe;
92 PassRefPtrWillBeRawPtr<StyleKeyframe> parseKeyframeRule(StyleSheetContents*, const String&);
127 StyleKeyframe* createKeyframe(CSSParserValueList*);
128 StyleRuleKeyframes* createKeyframesRule(const String&, PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> > >, bool isPrefixed);
156 WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >* createFloatingKeyframeVector();
157 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> > > sinkFloatingKeyframeVector(WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >*);
183 RefPtrWillBeMember<StyleKeyframe> m_keyframe;
291 WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> > m_parsedKeyframes
    [all...]
BisonCSSParser-in.cpp 177 PassRefPtrWillBeRawPtr<StyleKeyframe> BisonCSSParser::parseKeyframeRule(StyleSheetContents* sheet, const String& string)
190 return StyleKeyframe::createKeyList(m_valueList.get());
    [all...]
CSSPropertyParser.h 57 class StyleKeyframe;
59 class StyleKeyframe;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 66 class StyleKeyframe;
120 PassRefPtr<RenderStyle> styleForKeyframe(Element*, const RenderStyle&, RenderStyle* parentStyle, const StyleKeyframe*, const AtomicString& animationName);
StyleResolver.cpp 698 PassRefPtr<RenderStyle> StyleResolver::styleForKeyframe(Element* element, const RenderStyle& elementStyle, RenderStyle* parentStyle, const StyleKeyframe* keyframe, const AtomicString& animationName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 95 const WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >& styleKeyframes = keyframesRule->keyframes();
102 const StyleKeyframe* styleKeyframe = styleKeyframes[i].get();
104 RefPtr<RenderStyle> keyframeStyle = resolver->styleForKeyframe(element, style, parentStyle, styleKeyframe, name);
106 const Vector<double>& offsets = styleKeyframe->keys();
110 const StylePropertySet& properties = styleKeyframe->properties();
    [all...]

Completed in 683 milliseconds