OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TouchList
(Results
1 - 14
of
14
) sorted by null
/external/webkit/Source/WebCore/dom/
TouchList.h
37
class
TouchList
: public RefCounted<
TouchList
> {
39
static PassRefPtr<
TouchList
> create()
41
return adoptRef(new
TouchList
);
51
TouchList
() {}
TouchEvent.h
32
#include "
TouchList
.h"
44
static PassRefPtr<TouchEvent> create(
TouchList
* touches,
45
TouchList
* targetTouches,
TouchList
* changedTouches,
55
void initTouchEvent(
TouchList
* touches,
TouchList
* targetTouches,
56
TouchList
* changedTouches, const AtomicString& type,
61
TouchList
* touches() const { return m_touches.get(); }
62
TouchList
* targetTouches() const { return m_targetTouches.get(); }
63
TouchList
* changedTouches() const { return m_changedTouches.get();
[
all
...]
TouchEvent.idl
31
readonly attribute
TouchList
touches;
32
readonly attribute
TouchList
targetTouches;
33
readonly attribute
TouchList
changedTouches;
39
void initTouchEvent(in
TouchList
touches,
40
in
TouchList
targetTouches,
41
in
TouchList
changedTouches,
TouchList.cpp
30
#include "
TouchList
.h"
34
Touch*
TouchList
::item(unsigned index)
TouchList.idl
31
]
TouchList
{
TouchEvent.cpp
41
TouchEvent::TouchEvent(
TouchList
* touches,
TouchList
* targetTouches,
42
TouchList
* changedTouches, const AtomicString& type,
60
void TouchEvent::initTouchEvent(
TouchList
* touches,
TouchList
* targetTouches,
61
TouchList
* changedTouches, const AtomicString& type,
Document.idl
335
[ReturnsNew, EnabledAtRuntime, Custom]
TouchList
createTouchList()
Document.h
148
class
TouchList
;
[
all
...]
/external/webkit/Source/WebCore/bindings/js/
JSTouchListCustom.cpp
31
#include "
TouchList
.h"
37
JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject,
TouchList
*
touchList
)
39
if (!
touchList
)
42
return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject,
TouchList
,
touchList
);
JSDocumentCustom.cpp
38
#include "
TouchList
.h"
131
RefPtr<
TouchList
>
touchList
=
TouchList
::create();
134
touchList
->append(toTouch(exec->argument(i)));
136
return toJS(exec,
touchList
.release());
/external/webkit/Source/WebCore/bindings/v8/custom/
V8DocumentCustom.cpp
38
#include "
TouchList
.h"
145
RefPtr<
TouchList
>
touchList
=
TouchList
::create();
149
touchList
->append(touch);
152
return toV8(
touchList
.release());
/external/webkit/Source/WebCore/page/
EventHandler.cpp
[
all
...]
/external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp
57
#include "
TouchList
.h"
239
TouchList
* touches = (evt.data.multiTouch.action == kUp_ANPTouchAction
/external/webkit/Source/WebCore/
Android.mk
204
dom/
TouchList
.cpp \
[
all
...]
Completed in 1549 milliseconds