OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConditionEventListener
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h
38
class
ConditionEventListener
;
198
ConditionEventListener
* eventListener() const { return m_eventListener.get(); }
199
void setEventListener(PassRefPtr<
ConditionEventListener
>);
209
RefPtr<
ConditionEventListener
> m_eventListener;
275
friend class
ConditionEventListener
;
SVGSMILElement.cpp
108
class
ConditionEventListener
FINAL : public EventListener {
110
static PassRefPtr<
ConditionEventListener
> create(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
112
return adoptRef(new
ConditionEventListener
(animation, condition));
115
static const
ConditionEventListener
* cast(const EventListener* listener)
118
? static_cast<const
ConditionEventListener
*>(listener)
130
ConditionEventListener
(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
143
bool
ConditionEventListener
::operator==(const EventListener& listener)
145
if (const
ConditionEventListener
*
conditionEventListener
=
ConditionEventListener
::cast(&listener)
[
all
...]
Completed in 446 milliseconds