/third_party/libinput/src/ |
H A D | evdev-mt-touchpad-tap.c | 52 * Look at the state diagram in doc/touchpad-tap-state-machine.svg 115 "%d: invalid tap event %s in state %s\n", in log_tap_bug() 118 tap_state_to_str(tp->tap.state)); in log_tap_bug() 134 assert(tp->tap.map < ARRAY_LENGTH(button_map)); in tp_tap_notify() 139 button = button_map[tp->tap.map][nfingers - 1]; in tp_tap_notify() 142 tp->tap.buttons_pressed |= bit(nfingers); in tp_tap_notify() 144 tp->tap.buttons_pressed &= ~bit(nfingers); in tp_tap_notify() 155 libinput_timer_set(&tp->tap.timer, time + DEFAULT_TAP_TIMEOUT_PERIOD); in tp_tap_set_timer() 162 libinput_timer_set(&tp->tap.timer, in tp_tap_set_drag_timer() 171 libinput_timer_set(&tp->tap in tp_tap_set_draglock_timer() [all...] |
H A D | libinput.c | 3874 return device->config.tap ? device->config.tap->count(device) : 0; in libinput_device_config_tap_get_finger_count() 3889 return device->config.tap->set_enabled(device, enable); in libinput_device_config_tap_set_enabled() 3899 return device->config.tap->get_enabled(device); in libinput_device_config_tap_get_enabled() 3908 return device->config.tap->get_default(device); in libinput_device_config_tap_get_default_enabled() 3926 return device->config.tap->set_map(device, map); in libinput_device_config_tap_set_button_map() 3935 return device->config.tap->get_map(device); in libinput_device_config_tap_get_button_map() 3944 return device->config.tap->get_default_map(device); in libinput_device_config_tap_get_default_button_map() 3959 return device->config.tap->set_drag_enabled(device, enable); in libinput_device_config_tap_set_drag_enabled() 3968 return device->config.tap in libinput_device_config_tap_get_drag_enabled() [all...] |
H A D | evdev-mt-touchpad-gestures.c | 508 /* When tap is not enabled, always use the timer */ in tp_gesture_use_hold_timer() 509 if (!tp->tap.enabled) in tp_gesture_use_hold_timer() 517 * allowed fingers to tap, use the timer. in tp_gesture_use_hold_timer() 522 /* If the tap state machine is already in a hold status, for example in tp_gesture_use_hold_timer() 525 if (tp->tap.state == TAP_STATE_HOLD || in tp_gesture_use_hold_timer() 526 tp->tap.state == TAP_STATE_TOUCH_2_HOLD || in tp_gesture_use_hold_timer() 527 tp->tap.state == TAP_STATE_TOUCH_3_HOLD) in tp_gesture_use_hold_timer() 530 /* If the tap state machine is in dead status, use the timer. This in tp_gesture_use_hold_timer() 533 if (tp->tap.state == TAP_STATE_DEAD) in tp_gesture_use_hold_timer() 536 /* Otherwise, sync the hold notification with the tap stat in tp_gesture_use_hold_timer() [all...] |
/third_party/node/tools/ |
H A D | test-v8.bat | 23 echo running 'python tools\run-tests.py %common_v8_test_options% %v8_test_options% --slow-tests-cutoff 1000000 --json-test-results v8-tap.xml' 24 call python tools\run-tests.py %common_v8_test_options% %v8_test_options% --slow-tests-cutoff 1000000 --json-test-results v8-tap.xml 25 call python ..\..\tools\v8-json-to-junit.py < v8-tap.xml > v8-tap.json 29 echo running 'python tools\run-tests.py %common_v8_test_options% intl --slow-tests-cutoff 1000000 --json-test-results v8-intl-tap.xml' 30 call python tools\run-tests.py %common_v8_test_options% intl --slow-tests-cutoff 1000000 --json-test-results ./v8-intl-tap.xml 31 call python ..\..\tools\v8-json-to-junit.py < v8-intl-tap.xml > v8-intl-tap.json 35 echo running 'python tools\run-tests.py %common_v8_test_options% benchmarks --slow-tests-cutoff 1000000 --json-test-results v8-benchmarks-tap.xml' 36 call python tools\run-tests.py %common_v8_test_options% benchmarks --slow-tests-cutoff 1000000 --json-test-results ./v8-benchmarks-tap [all...] |
/third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/ |
H A D | MultiChannelResampler.cpp | 147 for (int tap = 0; tap < getNumTaps(); tap++) { in generateCoefficients() 167 for (int tap = 0; tap < getNumTaps(); tap++) { in generateCoefficients() 168 mCoefficients.at(gainCursor + tap) *= gainCorrection; in generateCoefficients()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | nonInferrableTypePropagation1.js | 15 declare function tap<T>(next: (value: T) => void): Op<T, T>; 22 tap((v) => log(v)), 26 tap((v) => log(v)), 33 var result1 = createAndUnbox(function () { return thing.pipe(map(function (data) { return box(data); }), tap(function (v) { return log(v); })); });
34 var result2 = createAndUnbox(function () { return thing.pipe(tap(function (v) { return log(v); }), map(function (data) { return box(data); })); });
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | owner.js | 1 const t = require('tap') 43 const mockRegistry = new MockRegistry({ tap: t, registry }) 68 tap: t, 121 tap: t, 132 tap: t, 149 tap: t, 168 tap: t, 201 tap: t, 231 tap: t, 254 tap [all...] |
/third_party/skia/third_party/externals/oboe/samples/MegaDrone/src/main/java/com/google/oboe/samples/megadrone/ |
H A D | MainActivity.java | 35 private native void tap(long engineHandle, boolean isDown); in tap() method in MainActivity 67 tap(mEngineHandle, true); in onTouchEvent() 69 tap(mEngineHandle, false); in onTouchEvent()
|
/third_party/skia/third_party/externals/oboe/samples/MegaDrone/src/main/cpp/ |
H A D | MegaDroneEngine.cpp | 43 void MegaDroneEngine::tap(bool isDown) { in tap() function in MegaDroneEngine 44 mAudioSource->tap(isDown); in tap()
|
H A D | MegaDroneEngine.h | 38 void tap(bool isDown);
|
H A D | Synth.h | 51 void tap(bool isOn) override {
|
H A D | native-lib.cpp | 73 engine->tap(isDown); in Java_com_google_oboe_samples_megadrone_MainActivity_tap()
|
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
H A D | HelloOboeEngine.cpp | 114 void HelloOboeEngine::tap(bool isDown) { in tap() function in HelloOboeEngine 115 mAudioSource->tap(isDown); in tap()
|
H A D | SoundGenerator.h | 48 void tap(bool isOn) override;
|
H A D | HelloOboeEngine.h | 35 void tap(bool isDown);
|
H A D | SoundGenerator.cpp | 47 void SoundGenerator::tap(bool isOn) { in tap() function in SoundGenerator
|
H A D | jni_bridge.cpp | 59 engine->tap(isToneOn); in Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn()
|
/third_party/node/test/parallel/ |
H A D | test-runner-cli.js | 125 'test/fixtures/test-runner/invalid-tap.js', 140 assert.match(stdout, /# Subtest: .+invalid-tap\.js/); 141 assert.match(stdout, /# invalid tap output/); 142 assert.match(stdout, /ok 2 - .+invalid-tap\.js/);
|
/third_party/node/deps/npm/test/fixtures/ |
H A D | mock-npm.js | 4 const tap = require('tap') 24 obj[key] = tap.fixture('symlink', path.join('..', value.content)) 147 // easy to accidentally forget to pass in tap 148 if (!(t instanceof tap.Test)) { 149 throw new Error('first argument must be a tap instance')
|
/third_party/skia/third_party/externals/oboe/samples/shared/ |
H A D | ITappable.h | 23 virtual void tap(bool isDown) = 0;
|
/third_party/node/ |
H A D | Makefile | 33 TAP_V8 := --junitout $(PWD)/v8-tap.xml 34 TAP_V8_INTL := --junitout $(PWD)/v8-intl-tap.xml 35 TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml 42 TAP_V8_JSON := $(PWD)/v8-tap.json 43 TAP_V8_INTL_JSON := $(PWD)/v8-intl-tap.json 44 TAP_V8_BENCHMARKS_JSON := $(PWD)/v8-benchmarks-tap.json 204 $(RM) test.tap 531 $(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \ 539 $(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/ |
H A D | Game.h | 52 void tap(int64_t eventTimeAsUptime);
|
H A D | native-lib.cpp | 70 game->tap(time_since_boot_ms); in Java_com_google_oboe_samples_rhythmgame_GameSurfaceView_native_1onTouchInput()
|
/third_party/node/deps/npm/node_modules/init-package-json/lib/ |
H A D | default-input.js | 11 const isTestPkg = (p) => !!p.match(/^(expresso|mocha|tap|coffee-script|coco|streamline)$/) 179 tap: 'tap test/*.js',
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp8dsp.asm | 172 mova m5, [sixtap_filter_hb+mxq*8-48] ; set up 6tap filter in bytes 213 mova m5, [fourtap_filter_hb+mxq-16] ; set up 4tap filter in bytes 325 ; 4x4 block, H-only 4-tap filter 332 movq mm4, [fourtap_filter_hw+mxq-16] ; set up 4tap filter in words 373 ; 4x4 block, H-only 6-tap filter 380 movq mm4, [sixtap_filter_hw+mxq*8-48] ; set up 4tap filter in words 543 ; 4x4 block, V-only 4-tap filter 596 ; 4x4 block, V-only 6-tap filter
|