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

1 2 3

  /packages/apps/Calculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 91 tap(R.id.equal);
92 tap(R.id.del);
95 tap(R.id.digit5);
96 tap(R.id.digit6);
97 tap(R.id.digit7);
98 tap(R.id.div);
99 tap(R.id.digit3);
100 tap(R.id.equal);
106 tap(R.id.minus);
107 tap(R.id.digit7)
121 private boolean tap(int id) { method in class:CalculatorHitSomeButtons
    [all...]
  /external/libpcap/
pcap-enet.c 39 struct tap_header tap; member in struct:packet_header
80 caplen = ph->tap.th_wirelen > snaplen ? snaplen : ph->tap
83 ph->tap.th_wirelen, caplen)) {
87 (struct timeval *)ph->tap.th_timestamp,
88 ph->tap.th_wirelen, caplen);
  /external/chromium_org/content/browser/renderer_host/input/
touch_action_filter_unittest.cc 26 const WebGestureEvent tap = SyntheticWebGestureEventBuilder::Build( local
33 EXPECT_FALSE(filter.FilterGestureEvent(tap));
43 EXPECT_FALSE(filter.FilterGestureEvent(tap));
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl_unittest.cc 197 // Tap the textfield to invoke touch selection.
198 ui::GestureEvent tap(ui::ET_GESTURE_TAP, 0, 0, 0, base::TimeDelta(),
200 textfield_view_->OnGestureEvent(&tap);
221 textfield_view_->OnGestureEvent(&tap);
229 // Tap the textfield to invoke touch selection.
230 ui::GestureEvent tap(ui::ET_GESTURE_TAP, 0, 0, 0, base::TimeDelta(),
232 textfield_view_->OnGestureEvent(&tap);
277 // Tap the textfield to invoke touch selection.
278 ui::GestureEvent tap(ui::ET_GESTURE_TAP, 0, 0, 0, base::TimeDelta(),
280 textfield_view_->OnGestureEvent(&tap);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
LinkHighlightTest.cpp 216 touchEvent.data.tap.width = 30;
217 touchEvent.data.tap.height = 30;
221 IntRect boundingBox(touchEvent.x - touchEvent.data.tap.width / 2, touchEvent.y - touchEvent.data.tap.height / 2, touchEvent.data.tap.width, touchEvent.data.tap.height);
WebInputEventConversionTest.cpp 157 webGestureEvent.data.tap.width = 10;
158 webGestureEvent.data.tap.height = 10;
168 webGestureEvent.data.tap.width = 10;
169 webGestureEvent.data.tap.height = 10;
356 webGestureEvent.data.tap.width = 30;
357 webGestureEvent.data.tap.height = 30;
367 webGestureEvent.data.tap.width = 30;
368 webGestureEvent.data.tap.height = 30;
466 webGestureEvent.data.tap.tapCount = 1;
467 webGestureEvent.data.tap.width = 10
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
ntp_android.css 41 -webkit-tap-highlight-color: transparent;
66 -webkit-tap-highlight-color: transparent;
opentabs_tablet.css 43 -webkit-tap-highlight-color: transparent;
mostvisited.css 16 -webkit-tap-highlight-color: transparent;
bookmarks.css 88 -webkit-tap-highlight-color: transparent;
98 -webkit-tap-highlight-color: transparent;
opentabs.css 6 -webkit-tap-highlight-color: transparent;
18 -webkit-tap-highlight-color: transparent;
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
tap.js 26 chrome.gpuBenchmarking.tap);
55 chrome.gpuBenchmarking.tap(position_left, position_top,
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 150 bool tap() const { return tap_; } function in class:aura::test::__anon17420::GestureEventConsumeDelegate
695 // Check that appropriate touch events generate tap gesture events.
711 EXPECT_FALSE(delegate->tap());
727 // recognized as a tap.
733 EXPECT_TRUE(delegate->tap());
745 // Check that appropriate touch events generate tap gesture events
766 EXPECT_FALSE(delegate->tap());
776 // is recognized as a tap.
784 EXPECT_TRUE(delegate->tap());
809 EXPECT_FALSE(delegate->tap());
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.css 19 -webkit-tap-highlight-color: transparent;
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 158 gesture_event.data.tap.tapCount = event.details().tap_count();
159 gesture_event.data.tap.width = event.details().bounding_box().width();
160 gesture_event.data.tap.height = event.details().bounding_box().height();
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_buffer.js 100 * Searches for an action for the double tap enumerating
116 * Possible double tap actions.
image_editor.js 602 * Double tap handler.
676 * Maximum movement for touch to be detected as a tap (in pixels).
682 * Maximum time for touch to be detected as a tap (in milliseconds).
688 * Maximum distance from the first tap to the second tap to be considered
689 * as a double tap.
695 * Maximum time for touch to be detected as a double tap (in milliseconds).
774 * Default double tap handler.
782 * Sets callback to be called when double tap detected.
783 * @param {function(number, number)} callback New double tap callback
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.css 26 -webkit-tap-highlight-color: transparent;
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 466 StreamTap* tap = new StreamTap(output, stream.release()); local
467 response().document.reset(tap);
488 StreamTap* tap = static_cast<StreamTap*>(response().document.release()); local
489 response().document.reset(tap->Detach());
492 StreamResult result = tap->GetTapResult(&error);
494 // Delete the tap and cache stream (which completes cache unlock)
495 delete tap;
stream.h 331 // in either direction to the tap. Note that errors or blocking on writing to
332 // the tap will prevent further tap writes from occurring.
337 explicit StreamTap(StreamInterface* stream, StreamInterface* tap);
339 void AttachTap(StreamInterface* tap);
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 195 m_area = expandedIntSize(FloatSize(e.data.tap.width / scale, e.data.tap.height / scale));
196 m_data.m_tap.m_tapCount = e.data.tap.tapCount;
200 m_area = expandedIntSize(FloatSize(e.data.tap.width / scale, e.data.tap.height / scale));
760 data.tap.tapCount = 1;
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpclient.cc 499 StreamTap* tap = new StreamTap(output, stream.release()); local
500 response().document.reset(tap);
521 StreamTap* tap = static_cast<StreamTap*>(response().document.release()); local
522 response().document.reset(tap->Detach());
525 StreamResult result = tap->GetTapResult(&error);
527 // Delete the tap and cache stream (which completes cache unlock)
528 delete tap;
stream.h 348 // in either direction to the tap. Note that errors or blocking on writing to
349 // the tap will prevent further tap writes from occurring.
354 explicit StreamTap(StreamInterface* stream, StreamInterface* tap);
356 void AttachTap(StreamInterface* tap);
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 469 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m1, m2, m3 ; 3-tap avg B4 B3 B2 B1 C1 D1
470 pavgb m1, m0 ; 2-tap avg A4 A3 A2 A1
507 pavgb m6, m1, m2 ; 2-tap avg A8-A1
509 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m4, m5, m7 ; 3-tap avg C-H1
511 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m1, m2, m3, m0 ; 3-tap avg B8-1
562 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m5, m3, m4 ; 3-tap avg B3-Bg
572 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m7, m3, m5, m1 ; 3-tap avg C1-P1
625 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m1, m4, m6, m2 ; 3-tap avg above [high]
630 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m7, m3, m5, m1 ; 3-tap avg above [low]
636 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m5, m3, m4 ; 3-tap avg B3-B
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|

Completed in 593 milliseconds

1 2 3