HomeSort by relevance Sort by last modified time
    Searched refs:Touch (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebCore/bindings/js/
JSTouchCustom.cpp 31 #include "Touch.h"
37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Touch* touch)
39 if (!touch)
42 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, Touch, touch);
  /external/webkit/Source/WebCore/dom/
TouchList.h 31 #include "Touch.h"
46 Touch* item(unsigned);
48 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); }
53 Vector<RefPtr<Touch> > m_values;
TouchList.cpp 34 Touch* TouchList::item(unsigned index)
TouchList.idl 34 Touch item(in unsigned long index);
Touch.h 39 class Touch : public RefCounted<Touch> {
41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target,
44 return adoptRef(new Touch(frame, target, identifier, screenX,
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
Touch.cpp 30 #include "Touch.h"
56 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY)
Touch.idl 30 ] Touch {
Document.h 146 class Touch;
    [all...]
Document.idl 327 [ReturnsNew, EnabledAtRuntime] Touch createTouch(in DOMWindow window,
Document.cpp     [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 32 import android.text.method.Touch;
37 @TestTargetClass(Touch.class)
87 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0);
97 Touch.scrollTo(tv, layout, width + 100, 5);
106 Touch.scrollTo(tv, layout, width - 10, 5);
174 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event1);
182 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
183 assertEquals(0, Touch.getInitialScrollY(tv, spannable));
188 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event2);
196 assertEquals(0, Touch.getInitialScrollX(tv, spannable))
    [all...]
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 519 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(topLine));
549 Touch.scrollTo(widget, layout, widget.getScrollX(),
570 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(topLine));
591 Touch.scrollTo(widget, layout, widget.getScrollX(),
610 Touch.scrollTo(widget, layout, widget.getScrollX(), layout.getLineTop(0));
629 Touch.scrollTo(widget, layout, widget.getScrollX(),
ArrowKeyMovementMethod.java 231 initialScrollX = Touch.getInitialScrollX(widget, buffer);
232 initialScrollY = Touch.getInitialScrollY(widget, buffer);
235 boolean handled = Touch.onTouchEvent(widget, buffer, event);
244 // Disallow intercepting of the touch events, so that
262 // Get the current touch position
ScrollingMovementMethod.java 90 return Touch.onTouchEvent(widget, buffer, event);
Touch.java 28 public class Touch {
29 private Touch() { }
83 * Handles touch events for dragging. You may want to do other actions
84 * like moving the cursor on touch as well.
  /external/chromium/base/
file_util_proxy.h 171 static bool Touch(
179 static bool Touch(
file_util_proxy.cc 866 bool FileUtilProxy::Touch(
878 bool FileUtilProxy::Touch(
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list.js 12 // Test createTouchList with Touch objects as arguments.
  /external/valgrind/main/none/tests/ppc32/
testVMX.stdout.exp 86 Function vec_dst [Vector Data Stream Touch] not checked
89 Function vec_dstst [Vector Data Stream Touch for Store] not checked
92 Function vec_dststt [Vector Data Stream Touch for Store Transient] not checked
95 Function vec_dstt [Vector Data Stream Touch Transient] not checked
  /frameworks/base/core/java/android/webkit/
WebTextView.java 44 import android.text.method.Touch;
94 // Variables for keeping track of the touch down, to send to the WebView
101 // scroll or the web page to scroll. Gets reset after a touch down.
109 // WebTextView gained focus from a touch, webkit will determine the
736 int initialScrollX = Touch.getInitialScrollX(this, buffer);
737 int initialScrollY = Touch.getInitialScrollY(this, buffer);
    [all...]
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 55 #include "Touch.h"
244 // co-ordinates as there is no touch in touches anymore.
254 Touch* touch = touches->item(x); local
256 IntPoint localPos = roundedIntPoint(m_element->renderer()->absoluteToLocal(IntPoint(touch->pageX(), touch->pageY())));
258 evt.data.multiTouch.touchPoint[x].id = touch->identifier();
268 // cleanup the touch points we allocated
291 // The plugin needs focus to receive keyboard and touch events
  /frameworks/base/docs/html/resources/
resources-data.js 122 en: 'Touch screens allow users to perform gestures, such as tapping, dragging, flinging, or sliding, to perform various actions. The gestures API enables your application to recognize even complicated gestures with ease. This article explains how to integrate this API into an application.'
267 path: 'articles/touch-mode.html',
269 en: 'Touch Mode'
272 en: 'This article explains the touch mode, one of the most important principles of Android\'s UI toolkit. Whenever a user interacts with a device\'s touch screen, the system enters touch mode. While simple in concept, there are important implications touch mode that are often overlooked.'
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 7 * This file contains the code necessary to make the Touch NTP work
12 * Note that, while the product portion of the touch NTP is designed to work
335 // Called when an app is repositioned in the touch NTP
382 // The position a touch was last started
385 // Distance which a touch needs to move to be considered a drag
394 // outstanding gesture. Also, any multi-touch is a gesture that should
401 // If this is a multi-touch then the work here is irrelevant
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.js 6 * @fileoverview Touch-based new tab page
7 * This is the main code for the new tab page used by touch-enabled Chrome
103 // Prevent touch events from triggering any sort of native scrolling
445 // region outside the border, and a 10px box is too small to require touch
447 // the dot for accepting the touch events.
723 // Stop the slider from sliding for this touch
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 3191 RefPtr<Touch> touch = Touch::create(doc->frame(), touchTarget.get(), point.id(), local
    [all...]

Completed in 2355 milliseconds

1 2