HomeSort by relevance Sort by last modified time
    Searched refs:Touch (Results 1 - 25 of 35) 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 147 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 27 import android.text.method.Touch;
76 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0);
86 Touch.scrollTo(tv, layout, width + 100, 5);
95 Touch.scrollTo(tv, layout, width - 10, 5);
144 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event1);
152 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
153 assertEquals(0, Touch.getInitialScrollY(tv, spannable));
158 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event2);
166 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
167 assertEquals(0, Touch.getInitialScrollY(tv, spannable))
    [all...]
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list-crash.js 1 description("This test ensures that WebKit doesn't crash when the document.createTouchList API is called with non-Touch parameters");
document-create-touch-list.js 12 // Test createTouchList with Touch objects as arguments.
  /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/Source/WebCore/bindings/v8/custom/
V8DocumentCustom.cpp 148 Touch* touch = V8DOMWrapper::isWrapperOfType(args[i], &V8Touch::info) ? V8Touch::toNative(args[i]->ToObject()) : 0; local
149 touchList->append(touch);
  /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/docs/html/design/
design_toc.cs 17 <li><a href="<?cs var:toroot ?>design/style/touch-feedback.html">Touch Feedback</a></li>
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 55 #include "Touch.h"
240 // co-ordinates as there is no touch in touches anymore.
250 Touch* touch = touches->item(x); local
252 IntPoint localPos = roundedIntPoint(m_element->renderer()->absoluteToLocal(IntPoint(touch->pageX(), touch->pageY())));
254 evt.data.multiTouch.touchPoint[x].id = touch->identifier();
264 // cleanup the touch points we allocated
287 // The plugin needs focus to receive keyboard and touch events
  /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

Completed in 487 milliseconds

1 2