OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:activeAnimations
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h
25
#include "core/animation/
ActiveAnimations
.h"
134
ActiveAnimations
*
activeAnimations
() { return m_activeAnimations.get(); }
135
void setActiveAnimations(PassOwnPtr<
ActiveAnimations
>
activeAnimations
)
137
m_activeAnimations =
activeAnimations
;
188
OwnPtr<
ActiveAnimations
> m_activeAnimations;
Element.cpp
211
if (
ActiveAnimations
*
activeAnimations
= data->
activeAnimations
())
212
activeAnimations
->cssAnimations().cancel();
376
ActiveAnimations
* Element::
activeAnimations
() const
379
return elementRareData()->
activeAnimations
();
383
ActiveAnimations
* Element::ensureActiveAnimations()
386
if (!rareData.
activeAnimations
())
387
rareData.setActiveAnimations(adoptPtr(new
ActiveAnimations
()));
[
all
...]
Completed in 102 milliseconds