OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:touchList
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp
33
#include "core/dom/
TouchList
.h"
288
WillBeHeapVector<RawPtrWillBeMember<
TouchList
> > adjustedTouches;
289
WillBeHeapVector<RawPtrWillBeMember<
TouchList
> > adjustedTargetTouches;
290
WillBeHeapVector<RawPtrWillBeMember<
TouchList
> > adjustedChangedTouches;
316
void EventPath::adjustTouchList(const Node* node, const
TouchList
*
touchList
, WillBeHeapVector<RawPtrWillBeMember<
TouchList
> > adjustedTouchList, const WillBeHeapVector<RawPtrWillBeMember<TreeScope> >& treeScopes)
318
if (!
touchList
)
320
for (size_t i = 0; i <
touchList
->length(); ++i) {
321
const Touch& touch = *
touchList
->item(i)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp
36
#include "core/dom/
TouchList
.h"
130
RefPtrWillBeRawPtr<
TouchList
>
touchList
=
TouchList
::create();
131
touchList
->append(touch0);
132
RefPtrWillBeRawPtr<TouchEvent> touchEvent = TouchEvent::create(
touchList
.get(),
touchList
.get(),
touchList
.get(), EventTypeNames::touchstart, domWindow, false, false, false, false, false);
150
RefPtrWillBeRawPtr<
TouchList
> activeTouchList =
TouchList
::create()
[
all
...]
Completed in 1130 milliseconds