HomeSort by relevance Sort by last modified time
    Searched full:touches (Results 1 - 25 of 405) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/RenderScriptTests/HelloWorld/
_index.html 1 <p>A Renderscript graphics application that draws the text "Hello, World!" where the user touches.</p
  /external/chromium_org/tools/gyp/test/mac/postbuild-static-library/
test.gyp 12 'postbuild_name': 'Postbuild that touches a file',
26 'postbuild_name': 'Postbuild that touches a file',
  /external/chromium_org/tools/gyp/test/mac/rebuild/
test.gyp 31 'postbuild_name': 'Postbuild that touches the app binary',
48 'postbuild_name': 'Postbuild that touches the framework binary',
  /development/samples/browseable/BasicMultitouch/
_index.jd 9 API to keep track of individual touches across multiple touch events.</p>
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.h 43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches)
45 return adoptRef(new TouchList(touches));
61 TouchList(Vector<RefPtr<Touch> >& touches)
63 m_values.swap(touches);
  /external/chromium_org/third_party/WebKit/Source/core/events/
TouchEvent.h 44 static PassRefPtr<TouchEvent> create(TouchList* touches,
50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches,
55 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
61 TouchList* touches() const { return m_touches.get(); } function in class:WebCore::TouchEvent
65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; }
75 TouchEvent(TouchList* touches, TouchList* targetTouches,
TouchEvent.cpp 42 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
50 , m_touches(touches)
61 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches,
71 m_touches = touches;
TouchEvent.idl 26 readonly attribute TouchList touches;
34 void initTouchEvent([Default=Undefined] optional TouchList touches,
  /external/chromium_org/content/common/input/
synthetic_web_input_event_builders.cc 134 if (touches[i].state == WebTouchPoint::StateReleased)
137 touches[point] = touches[i];
138 touches[point].state = WebTouchPoint::StateStationary;
148 WebTouchPoint& point = touches[touchesLength];
161 WebTouchPoint& point = touches[index];
164 touches[index].state = WebTouchPoint::StateMoved;
170 touches[index].state = WebTouchPoint::StateReleased;
176 touches[index].state = WebTouchPoint::StateCancelled;
  /frameworks/base/core/tests/coretests/src/android/util/
TouchModeFlexibleAsserts.java 27 * are more flexible (allowing up to MAX_ATTEMPTS touches to enter touch mode via touch or
45 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode);
57 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode);
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardFlipListener.java 21 * These callback methods are used to disable and re-enable touches when a card
  /external/chromium_org/chrome/browser/ui/options/
options_util.cc 14 // GoogleUpdateSettings touches the disk from the UI thread. MetricsService
  /external/compiler-rt/lib/tsan/lit_tests/
aligned_vs_unaligned_race.cc 3 // touches the same memory region.
  /external/skia/tests/
PathOpsBoundsTest.cpp 55 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
56 REPORTER_ASSERT(reporter, touches);
63 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); local
64 REPORTER_ASSERT(reporter, !touches);
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
InteractionController.java 284 * Touches down for a long press at the specified coordinates.
679 * @param touches each array of {@link PointerCoords} constitute a single pointer's touch path.
686 public boolean performMultiPointerGesture(PointerCoords[] ... touches) {
688 if (touches.length < 2) {
694 for (int x = 0; x < touches.length; x++)
695 maxSteps = (maxSteps < touches[x].length) ? touches[x].length : maxSteps;
698 PointerProperties[] properties = new PointerProperties[touches.length];
699 PointerCoords[] pointerCoords = new PointerCoords[touches.length];
700 for (int x = 0; x < touches.length; x++)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 224 webTouchEvent.touches[0].state = WebTouchPoint::StateMoved;
225 webTouchEvent.touches[0].screenPosition.x = 10;
226 webTouchEvent.touches[0].screenPosition.y = 10;
227 webTouchEvent.touches[0].position.x = 10;
228 webTouchEvent.touches[0].position.y = 10;
229 webTouchEvent.touches[0].radiusX = 10;
230 webTouchEvent.touches[0].radiusY = 10;
284 EXPECT_EQ(10, webTouchBuilder.touches[0].screenPosition.x);
285 EXPECT_EQ(10, webTouchBuilder.touches[0].screenPosition.y);
286 EXPECT_EQ(10, webTouchBuilder.touches[0].position.x)
    [all...]
TouchActionTest.cpp 286 webTouchEvent.touches[0].state = (type == WebInputEvent::TouchStart ?
289 webTouchEvent.touches[0].id = kfakeTouchId;
290 webTouchEvent.touches[0].screenPosition.x = clientPoint.x();
291 webTouchEvent.touches[0].screenPosition.y = clientPoint.y();
292 webTouchEvent.touches[0].position.x = clientPoint.x();
293 webTouchEvent.touches[0].position.y = clientPoint.y();
294 webTouchEvent.touches[0].radiusX = 10;
295 webTouchEvent.touches[0].radiusY = 10;
  /external/chromium/chrome/browser/resources/ntp4/
touch_handler.js 68 * touches are removed based on the max tracking time and when direction
78 * touches are removed based on the max tracking time and when direction
207 * The maximum number of touches to track.
387 e.touches = [];
391 e.touches[0] = touch;
456 // Only process single touches. If there is already a touch happening, or
457 // two simultaneous touches then just ignore them.
458 if (e.touches.length > 1)
523 * Given a list of Touches, find the one matching our activeTouch
526 * @param {TouchList} touches The list of Touch objects to search
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/
touchhandler.js 68 * touches are removed based on the max tracking time and when direction
78 * touches are removed based on the max tracking time and when direction
207 * The maximum number of touches to track.
387 e.touches = [];
391 e.touches[0] = touch;
456 // Only process single touches. If there is already a touch happening, or
457 // two simultaneous touches then just ignore them.
458 if (e.touches.length > 1)
523 * Given a list of Touches, find the one matching our activeTouch
526 * @param {TouchList} touches The list of Touch objects to search
    [all...]
  /external/chromium_org/ui/webui/resources/js/cr/ui/
touch_handler.js 68 * touches are removed based on the max tracking time and when direction
78 * touches are removed based on the max tracking time and when direction
211 * The maximum number of touches to track.
401 e.touches = [];
405 e.touches[0] = touch;
470 // Only process single touches. If there is already a touch happening, or
471 // two simultaneous touches then just ignore them.
472 if (e.touches.length > 1)
538 * Given a list of Touches, find the one matching our activeTouch
541 * @param {TouchList} touches The list of Touch objects to search
    [all...]
  /external/chromium_org/ui/events/gestures/
gesture_recognizer_impl.cc 196 std::vector<std::pair<int, GestureConsumer*> >* touches) {
197 while (!touches->empty()) {
198 int touch_id = touches->begin()->first;
199 GestureConsumer* target = touches->begin()->second;
206 touches->erase(touches->begin());
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_capture_client.cc 42 // If we're actually starting capture, then cancel any touches/gestures
45 // distinction between the touches/gestures that were in the window all
  /developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/
MainActivity.java 23 * This is an example of keeping track of individual touches across multiple
  /developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/res/values/
base-strings.xml 26 This samples demonstrates the use of MotionEvent properties to keep track of individual touches
  /developers/samples/android/input/multitouch/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/
MainActivity.java 23 * This is an example of keeping track of individual touches across multiple

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>