HomeSort by relevance Sort by last modified time
    Searched defs:touch (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-for-weak-vtables-and-externals 39 sub touch($);
111 touch($buildTimestampPath);
115 sub touch($) subroutine
118 open(TOUCH, ">", $path) or die "$!";
119 close(TOUCH);
check-for-global-initializers 39 sub touch($);
145 touch($buildTimestampPath);
148 sub touch($) subroutine
151 open(TOUCH, ">", $path) or die "$!";
152 close(TOUCH);
check-for-exit-time-destructors 39 sub touch($);
105 touch($buildTimestampPath);
108 sub touch($) subroutine
111 open(TOUCH, ">", $path) or die "$!";
112 close(TOUCH);
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 96 const blink::WebTouchEvent& touch = touch_with_latency.event; local
98 switch (touch.type) {
116 int flags = WebModifiersToUIFlags(touch.modifiers);
118 static_cast<int64>(touch.timeStampSeconds * 1000000));
119 for (unsigned i = 0; i < touch.touchesLength; ++i) {
120 const blink::WebTouchPoint& point = touch.touches[i];
123 // In aura, the touch-event needs to be in the screen coordinate, since the
124 // touch-event is routed to RootWindow first. In Windows, on the other hand,
125 // the touch-event is dispatched directly to the gesture-recognizer, so the
272 // Add a new touch point
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 17 package android.widget.listview.touch;
30 * null in touch mode.
ListTouchTest.java 17 package android.widget.listview.touch;
28 * Touch tests for a list where all of the items fit on the screen.
62 assertEquals("Selection still available after touch", -1,
80 assertEquals("Selection still available after touch", -1,
ListOfTouchablesTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items fit on the screen.
ListSetSelectionTest.java 17 package android.widget.listview.touch;
29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
89 assertEquals("Selection still available after touch", -1,
127 assertEquals("Selection still available after touch", -1,
ListTouchBottomGravityTest.java 17 package android.widget.listview.touch;
28 * Touch tests for a list where all of the items fit on the screen, and the list
65 assertEquals("Selection still available after touch", -1,
84 assertEquals("Selection still available after touch", -1,
ListTouchBottomGravityManyTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items do not fit on the screen, and the list
66 assertEquals("Selection still available after touch", -1,
86 assertEquals("Selection still available after touch", -1,
  /external/chromium_org/content/renderer/
render_widget_unittest.cc 82 SyntheticWebTouchEvent touch; local
83 touch.PressPoint(10, 10);
85 widget->SendInputEvent(touch);
88 // Since there's currently no touch-event handling region, the response should
101 widget->SendInputEvent(touch);
121 SyntheticWebTouchEvent touch; local
122 touch.PressPoint(25, 25);
124 widget->SendInputEvent(touch);
127 // Since there's currently no touch-event handling region, the response should
135 // Press a second touch point. This time, on a touch-handling region
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventRetargeter.cpp 26 #include "core/dom/Touch.h"
94 const Touch& touch = *touchList->item(i); local
96 calculateAdjustedNodes(node, touch.target()->toNode(), DoesNotStopAtBoundary, const_cast<EventPath&>(eventPath), adjustedNodes);
99 eventPathTouchLists[j]->append(touch.cloneWithNewTarget(adjustedNodes[j].get()));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 44 #include "core/dom/Touch.h"
277 RefPtr<Touch> touch = Touch::create(webViewImpl->page()->mainFrame(), document.get(), 0, 10, 10, 10, 10, 10, 10, 0, 0); local
279 touchList->append(touch);
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 100 void touch(const T &) {} function
107 touch<T, id>(x);
118 touch<T, id>(v);
126 touch<U, id + id2>(u);
  /external/replicaisland/src/com/replica/replicaisland/
InputTouchScreen.java 88 InputXY touch = null; local
93 touch = pointer;
97 return touch;
  /external/stressapptest/src/
queue.h 45 uint32 touch; // Counter of the number of reads from this page. member in struct:page_entry
55 pe->touch = 0;
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 17 package android.widget.gridview.touch;
29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
GridTouchStackFromBottomManyTest.java 17 package android.widget.gridview.touch;
59 assertEquals("Selection still available after touch", -1,
75 assertEquals("Selection still available after touch", -1,
GridTouchStackFromBottomTest.java 17 package android.widget.gridview.touch;
57 assertEquals("Selection still available after touch", -1,
74 assertEquals("Selection still available after touch", -1,
91 assertEquals("Selection still available after touch", -1,
108 assertEquals("Selection still available after touch", -1,
GridTouchVerticalSpacingStackFromBottomTest.java 17 package android.widget.gridview.touch;
GridTouchVerticalSpacingTest.java 17 package android.widget.gridview.touch;
  /packages/apps/Browser/src/com/android/browser/
Preloader.java 99 s.touch(); // reset timer
112 s.touch(); // reset timer
155 touch(); method
162 public void touch() { method in class:Preloader.PreloaderSession
  /external/chromium_org/content/browser/renderer_host/input/
touch_input_browsertest.cc 184 // Touch input event tests don't work on Mac with the legacy software renderer.
194 SyntheticWebTouchEvent touch; local
197 // no touch-handler on it.
198 touch.PressPoint(25, 25);
199 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
211 // If a touch-press is acked with NO_CONSUMER_EXISTS, then subsequent
212 // touch-points don't need to be dispatched until the touch point is released.
213 touch.ReleasePoint(0);
214 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo())
228 SyntheticWebTouchEvent touch; local
253 SyntheticWebTouchEvent touch; local
277 SyntheticWebTouchEvent touch; local
    [all...]
  /external/chromium_org/content/renderer/input/
input_handler_proxy_unittest.cc 102 // touch any member variables after making that call.
1096 WebTouchEvent touch; local
1132 WebTouchEvent touch; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 34 #include "core/dom/Touch.h"
532 const Touch* touch = event.touches()->length() == 1 ? event.touches()->item(0) : event.changedTouches()->item(0); local
533 if (touch->identifier())
551 IntPoint localPoint = convertAbsoluteLocationForRenderObject(touch->absoluteLocation(), *renderObject);
703 const Touch* touch = touches->item(i); local
706 point.id = touch->identifier();
707 point.screenPosition = WebPoint(touch->screenX(), touch->screenY())
    [all...]

Completed in 1383 milliseconds

1 2 3 4