/external/chromium_org/tools/gyp/test/many-actions/ |
D | many-actions.gyp | 19 'touch', 28 'touch', 37 'touch', 46 'touch', 55 'touch', 64 'touch', 73 'touch', 82 'touch', 91 'touch', 100 'touch', [all …]
|
D | many-actions-unsorted.gyp | 21 'touch', 30 'touch', 39 'touch', 48 'touch', 57 'touch', 66 'touch', 75 'touch', 84 'touch', 93 'touch', 102 'touch', [all …]
|
D | gyptest-many-actions-unsorted.py | 23 test.touch('file1') 26 test.touch('file0') 29 test.touch('file2') 30 test.touch('file3') 31 test.touch('file4')
|
/external/chromium_org/ash/wm/panels/ |
D | attached_panel_window_targeter.cc | 53 gfx::Insets touch(default_touch_extend_); in UpdateTouchExtend() local 56 touch = gfx::Insets(touch.top(), touch.left(), 0, touch.right()); in UpdateTouchExtend() 59 touch = gfx::Insets(touch.top(), 0, touch.bottom(), touch.right()); in UpdateTouchExtend() 62 touch = gfx::Insets(touch.top(), touch.left(), touch.bottom(), 0); in UpdateTouchExtend() 65 touch = gfx::Insets(0, touch.left(), touch.bottom(), touch.right()); in UpdateTouchExtend() 72 set_touch_extend(touch); in UpdateTouchExtend()
|
/external/chromium_org/ui/events/gestures/ |
D | motion_event_aura.cc | 34 const TouchEvent& touch) { in GetPointDataFromTouchEvent() argument 36 point_data.x = touch.x(); in GetPointDataFromTouchEvent() 37 point_data.y = touch.y(); in GetPointDataFromTouchEvent() 38 point_data.raw_x = touch.root_location_f().x(); in GetPointDataFromTouchEvent() 39 point_data.raw_y = touch.root_location_f().y(); in GetPointDataFromTouchEvent() 40 point_data.touch_id = touch.touch_id(); in GetPointDataFromTouchEvent() 41 point_data.pressure = touch.force(); in GetPointDataFromTouchEvent() 42 point_data.source_device_id = touch.source_device_id(); in GetPointDataFromTouchEvent() 46 point_data.major_radius = std::max(touch.radius_x(), touch.radius_y()); in GetPointDataFromTouchEvent() 52 void MotionEventAura::OnTouch(const TouchEvent& touch) { in OnTouch() argument [all …]
|
/external/chromium_org/content/browser/renderer_host/input/ |
D | touch_input_browsertest.cc | 178 SyntheticWebTouchEvent touch; in IN_PROC_BROWSER_TEST_F() local 182 touch.PressPoint(25, 25); in IN_PROC_BROWSER_TEST_F() 183 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo()); in IN_PROC_BROWSER_TEST_F() 197 touch.ReleasePoint(0); in IN_PROC_BROWSER_TEST_F() 198 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo()); in IN_PROC_BROWSER_TEST_F() 199 touch.ResetPoints(); in IN_PROC_BROWSER_TEST_F() 204 SyntheticWebTouchEvent touch; in IN_PROC_BROWSER_TEST_F() local 208 touch.PressPoint(125, 25); in IN_PROC_BROWSER_TEST_F() 209 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo()); in IN_PROC_BROWSER_TEST_F() 213 touch.ReleasePoint(0); in IN_PROC_BROWSER_TEST_F() [all …]
|
D | input_router_impl_perftest.cc | 143 WebTouchEvent touch; in BuildTouchSequence() local 144 touch.touchesLength = 1; in BuildTouchSequence() 145 touch.type = WebInputEvent::TouchStart; in BuildTouchSequence() 146 touch.touches[0].id = 0; in BuildTouchSequence() 147 touch.touches[0].state = WebTouchPoint::StatePressed; in BuildTouchSequence() 148 touch.touches[0].position.x = origin.x(); in BuildTouchSequence() 149 touch.touches[0].position.y = origin.y(); in BuildTouchSequence() 150 touch.touches[0].screenPosition.x = origin.x(); in BuildTouchSequence() 151 touch.touches[0].screenPosition.y = origin.y(); in BuildTouchSequence() 152 touches.push_back(touch); in BuildTouchSequence() [all …]
|
D | touch_event_queue.cc | 450 TouchEventWithLatencyInfo touch = touch_queue_.front()->coalesced_event(); in ForwardNextEventToRenderer() local 452 if (WebTouchEventTraits::IsTouchSequenceStart(touch.event)) { in ForwardNextEventToRenderer() 459 gfx::PointF(touch.event.touches[0].position); in ForwardNextEventToRenderer() 463 touch.event.type == WebInputEvent::TouchMove) { in ForwardNextEventToRenderer() 471 (touch.event.timeStampSeconds >= in ForwardNextEventToRenderer() 474 OutsideApplicationSlopRegion(touch.event, in ForwardNextEventToRenderer() 477 !pending_async_touchmove_->CanCoalesceWith(touch)); in ForwardNextEventToRenderer() 481 pending_async_touchmove_.reset(new TouchEventWithLatencyInfo(touch)); in ForwardNextEventToRenderer() 483 DCHECK(pending_async_touchmove_->CanCoalesceWith(touch)); in ForwardNextEventToRenderer() 484 pending_async_touchmove_->CoalesceWith(touch); in ForwardNextEventToRenderer() [all …]
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
D | touch_handler.js | 393 var touch = { variable 403 e.changedTouches = [touch]; 405 e.touches[0] = touch; 406 e.targetTouches[0] = touch; 485 var touch = e.targetTouches[0]; 486 this.activeTouch_ = touch.identifier; 515 !!this.dispatchEvent_(TouchHandler.EventType.TOUCH_START, touch); 525 this.startTouchX_ = this.lastTouchX_ = touch.clientX; 526 this.startTouchY_ = this.lastTouchY_ = touch.clientY; 531 this.recentTouchesX_.push(touch.clientX, e.timeStamp); [all …]
|
/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
D | touch-action-tests.css | 2 Use a class to apply touch-action so that we can easily manually check 6 -ms-touch-action: none; 7 touch-action: none; 10 -ms-touch-action: auto; 11 touch-action: auto; 14 -ms-touch-action: pan-x; 15 touch-action: pan-x; 18 -ms-touch-action: pan-y; 19 touch-action: pan-y; 22 -ms-touch-action: pan-x pan-y; [all …]
|
/external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/ |
D | SkUIView.mm | 57 for (UITouch *touch in touches) { 58 CGPoint loc = [touch locationInView:self]; 59 fWind->handleClick(loc.x, loc.y, SkView::Click::kDown_State, touch); 64 for (UITouch *touch in touches) { 65 CGPoint loc = [touch locationInView:self]; 66 fWind->handleClick(loc.x, loc.y, SkView::Click::kMoved_State, touch); 71 for (UITouch *touch in touches) { 72 CGPoint loc = [touch locationInView:self]; 73 fWind->handleClick(loc.x, loc.y, SkView::Click::kUp_State, touch); 78 for (UITouch *touch in touches) { [all …]
|
/external/skia/experimental/iOSSampleApp/Shared/ |
D | SkUIView.mm | 57 for (UITouch *touch in touches) { 58 CGPoint loc = [touch locationInView:self]; 59 fWind->handleClick(loc.x, loc.y, SkView::Click::kDown_State, touch); 64 for (UITouch *touch in touches) { 65 CGPoint loc = [touch locationInView:self]; 66 fWind->handleClick(loc.x, loc.y, SkView::Click::kMoved_State, touch); 71 for (UITouch *touch in touches) { 72 CGPoint loc = [touch locationInView:self]; 73 fWind->handleClick(loc.x, loc.y, SkView::Click::kUp_State, touch); 78 for (UITouch *touch in touches) { [all …]
|
/external/chromium_org/ash/touch/ |
D | touch_hud_debug.cc | 100 explicit TouchPointLog(const ui::TouchEvent& touch) in TouchPointLog() 101 : id(touch.touch_id()), in TouchPointLog() 102 type(touch.type()), in TouchPointLog() 103 location(touch.root_location()), in TouchPointLog() 104 timestamp(touch.time_stamp().InMillisecondsF()), in TouchPointLog() 105 radius_x(touch.radius_x()), in TouchPointLog() 106 radius_y(touch.radius_y()), in TouchPointLog() 107 pressure(touch.force()), in TouchPointLog() 108 tracking_id(GetTrackingId(touch)), in TouchPointLog() 109 source_device(GetSourceDeviceId(touch)) { in TouchPointLog() [all …]
|
/external/chromium_org/content/renderer/ |
D | render_widget_unittest.cc | 80 SyntheticWebTouchEvent touch; in TEST_F() local 81 touch.PressPoint(10, 10); in TEST_F() 83 widget->SendInputEvent(touch); in TEST_F() 101 widget->SendInputEvent(touch); in TEST_F() 118 SyntheticWebTouchEvent touch; in TEST_F() local 119 touch.PressPoint(25, 25); in TEST_F() 121 widget->SendInputEvent(touch); in TEST_F() 135 touch.PressPoint(10, 10); in TEST_F() 136 widget->SendInputEvent(touch); in TEST_F()
|
/external/chromium_org/ui/events/gesture_detection/ |
D | gesture_event_data_packet.cc | 79 const ui::MotionEvent& touch) { in FromTouch() argument 80 return GestureEventDataPacket(touch.GetEventTime(), in FromTouch() 81 ToGestureSource(touch), in FromTouch() 82 gfx::PointF(touch.GetX(), touch.GetY()), in FromTouch() 83 gfx::PointF(touch.GetRawX(), touch.GetRawY())); in FromTouch()
|
/external/chromium_org/tools/gyp/test/defines-escaping/ |
D | gyptest-defines-escaping.py | 43 test.touch('defines-escaping.c') 66 test.touch('defines-escaping.c') 89 test.touch('defines-escaping.c') 111 test.touch('defines-escaping.c') 132 test.touch('defines-escaping.c') 152 test.touch('defines-escaping.c') 172 test.touch('defines-escaping.c')
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
D | style.css | 60 #calculator-buttons button.add[data-active="touch"], 69 #calculator-buttons button.clear[data-active="touch"], 78 #calculator-buttons button.divide[data-active="touch"], 87 #calculator-buttons button.eight[data-active="touch"], 100 #calculator-buttons button.equals[data-active="touch"], 109 #calculator-buttons button.five[data-active="touch"], 118 #calculator-buttons button.four[data-active="touch"], 128 #calculator-buttons button.multiply[data-active="touch"], 137 #calculator-buttons button.negate[data-active="touch"], 146 #calculator-buttons button.nine[data-active="touch"], [all …]
|
/external/libopus/ |
D | missing | 146 touch aclocal.m4 155 touch configure 174 touch $touch_files 185 while read f; do touch "$f"; done 199 touch $file 274 touch $file 308 touch $file
|
/external/libcap-ng/libcap-ng-0.7/ |
D | missing | 146 touch aclocal.m4 155 touch configure 174 touch $touch_files 185 while read f; do touch "$f"; done 199 touch $file 274 touch $file 308 touch $file
|
/external/chromium_org/third_party/opus/src/ |
D | missing | 146 touch aclocal.m4 155 touch configure 174 touch $touch_files 185 while read f; do touch "$f"; done 199 touch $file 274 touch $file 308 touch $file
|
/external/bison/build-aux/ |
D | missing | 145 touch aclocal.m4 154 touch configure 173 touch $touch_files 184 while read f; do touch "$f"; done 198 touch $file 273 touch $file 307 touch $file
|
/external/pixman/ |
D | missing | 146 touch aclocal.m4 155 touch configure 174 touch $touch_files 185 while read f; do touch "$f"; done 199 touch $file 274 touch $file 308 touch $file
|
/external/llvm/autoconf/ |
D | missing | 145 touch aclocal.m4 154 touch configure 173 touch $touch_files 184 while read f; do touch "$f"; done 198 touch $file 275 touch $file 296 touch $file
|
/external/stressapptest/ |
D | missing | 148 touch aclocal.m4 157 touch configure 176 touch $touch_files 187 while read f; do touch "$f"; done 201 touch $file 276 touch $file 310 touch $file
|
/external/libusb/ |
D | missing | 148 touch aclocal.m4 157 touch configure 176 touch $touch_files 187 while read f; do touch "$f"; done 201 touch $file 276 touch $file 310 touch $file
|