OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WMLIntrinsicEvent
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/wml/
WMLIntrinsicEvent.h
35
class
WMLIntrinsicEvent
: public RefCounted<
WMLIntrinsicEvent
> {
37
static PassRefPtr<
WMLIntrinsicEvent
> create(Document* document, const String& targetURL)
39
return adoptRef(new
WMLIntrinsicEvent
(document, targetURL));
42
static PassRefPtr<
WMLIntrinsicEvent
> createWithTask(WMLTaskElement* taskElement)
44
return adoptRef(new
WMLIntrinsicEvent
(taskElement));
50
WMLIntrinsicEvent
(Document*, const String& targetURL);
51
WMLIntrinsicEvent
(WMLTaskElement*);
WMLIntrinsicEvent.cpp
24
#include "
WMLIntrinsicEvent
.h"
40
WMLIntrinsicEvent
::
WMLIntrinsicEvent
(Document* document, const String& targetURL)
46
WMLIntrinsicEvent
::
WMLIntrinsicEvent
(WMLTaskElement* taskElement)
WMLIntrinsicEventHandler.h
28
#include "
WMLIntrinsicEvent
.h"
40
class
WMLIntrinsicEvent
;
46
bool registerIntrinsicEvent(WMLIntrinsicEventType, PassRefPtr<
WMLIntrinsicEvent
>);
52
typedef HashMap<int, RefPtr<
WMLIntrinsicEvent
> > EventMap;
WMLIntrinsicEventHandler.cpp
32
bool WMLIntrinsicEventHandler::registerIntrinsicEvent(WMLIntrinsicEventType type, PassRefPtr<
WMLIntrinsicEvent
> event)
49
RefPtr<
WMLIntrinsicEvent
> event = m_events.get(type);
WMLOnEventElement.cpp
88
RefPtr<
WMLIntrinsicEvent
> event =
WMLIntrinsicEvent
::createWithTask(task);
WMLTemplateElement.cpp
70
RefPtr<
WMLIntrinsicEvent
> event =
WMLIntrinsicEvent
::create(document(), attr->value());
WMLOptionElement.cpp
91
RefPtr<
WMLIntrinsicEvent
> event =
WMLIntrinsicEvent
::create(document(), attr->value());
WMLCardElement.cpp
240
RefPtr<
WMLIntrinsicEvent
> event =
WMLIntrinsicEvent
::create(document(), attr->value());
Completed in 226 milliseconds