OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_keyframeanimations
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
CompositeAnimation.cpp
46
m_keyframeAnimations
.clear();
61
if (!
m_keyframeAnimations
.isEmpty()) {
62
AnimationNameMap::const_iterator animationsEnd =
m_keyframeAnimations
.end();
63
for (AnimationNameMap::const_iterator it =
m_keyframeAnimations
.begin(); it != animationsEnd; ++it) {
191
if (
m_keyframeAnimations
.isEmpty() && !targetStyle.hasAnimations())
194
AnimationNameMap::const_iterator kfend =
m_keyframeAnimations
.end();
199
for (AnimationNameMap::const_iterator it =
m_keyframeAnimations
.begin(); it != kfend; ++it) {
205
for (AnimationNameMap::const_iterator it =
m_keyframeAnimations
.begin(); it != kfend; ++it)
223
RefPtr<KeyframeAnimation> keyframeAnim =
m_keyframeAnimations
.get(name);
239
m_keyframeAnimations
.set(name, keyframeAnim)
[
all
...]
CompositeAnimation.h
64
bool hasAnimations() const { return !m_transitions.isEmpty() || !
m_keyframeAnimations
.isEmpty(); }
90
AnimationNameMap
m_keyframeAnimations
;
Completed in 1258 milliseconds