/third_party/libinput/test/ |
D | litest-device-protocol-a-touch-screen.c | 35 int tracking_id; member 56 static int tracking_id; in protocolA_down() local 72 s->tracking_id = ++tracking_id; in protocolA_down() 83 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, s->tracking_id); in protocolA_down() 125 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, s->tracking_id); in protocolA_move() 151 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, s->tracking_id); in protocolA_up() 163 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, s->tracking_id); in protocolA_up()
|
D | litest.c | 2006 static int tracking_id; in litest_auto_assign_value() local 2022 value = ++tracking_id; in litest_auto_assign_value() 2406 static int tracking_id; in auto_assign_tablet_value() local 2414 value = ++tracking_id; in auto_assign_tablet_value() 4197 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, ++semi_mt->tracking_id); in litest_semi_mt_touch_down() 4203 litest_event(d, EV_ABS, ABS_MT_TRACKING_ID, ++semi_mt->tracking_id); in litest_semi_mt_touch_down()
|
D | litest.h | 357 int tracking_id; member
|
D | test-touchpad.c | 2659 static unsigned int tracking_id; in hover_start() local 2662 litest_event(dev, EV_ABS, ABS_MT_TRACKING_ID, ++tracking_id); in hover_start()
|
/third_party/mindspore/mindspore/core/abstract/ |
D | abstract_function.cc | 143 return (prim_ == other_prim->prim_ && tracking_id() == other_prim->tracking_id()); in operator ==() 150 if (tracking_id() != nullptr) { in hash() 151 hash_value = hash_combine(hash_value, tracking_id()->hash()); in hash() 162 tracking_id() == other_fg->tracking_id(); in operator ==() 168 if (tracking_id() != nullptr) { in hash() 169 hash_value = hash_combine(hash_value, tracking_id()->hash()); in hash() 188 …meta_func_graph_ == other_meta_fg->meta_func_graph_ && tracking_id() == other_meta_fg->tracking_id… in operator ==() 194 if (tracking_id() != nullptr) { in hash() 195 hash_value = hash_combine(hash_value, tracking_id()->hash()); in hash()
|
D | abstract_function.h | 79 …explicit PrimitiveAbstractClosure(const PrimitivePtr &prim, const AnfNodePtr &tracking_id = nullpt… 80 : prim_(prim), tracking_id_(AnfNodeWeakPtr(tracking_id)) {} in prim_() 86 AnfNodePtr tracking_id() const override { return tracking_id_.lock(); } in tracking_id() function 90 … Copy() const override { return std::make_shared<PrimitiveAbstractClosure>(prim_, tracking_id()); } in Copy() 112 const AnfNodePtr &tracking_id = nullptr) 113 : func_graph_(func_graph), context_(context), tracking_id_(AnfNodeWeakPtr(tracking_id)) { in func_graph_() 124 AnfNodePtr tracking_id() const override { return tracking_id_.lock(); } in tracking_id() function 129 return std::make_shared<FuncGraphAbstractClosure>(func_graph_, context_, tracking_id()); in Copy() 154 … const AnfNodePtr &tracking_id = nullptr, const ScopePtr &scope = kDefaultScope) 155 … : meta_func_graph_(meta_func_graph), tracking_id_(AnfNodeWeakPtr(tracking_id)), scope_(scope) {} in meta_func_graph_() [all …]
|
D | abstract_value.h | 230 virtual AnfNodePtr tracking_id() const { return nullptr; } in tracking_id() function
|
/third_party/flutter/skia/third_party/externals/sdl/src/core/linux/ |
D | SDL_evdev.c | 87 int tracking_id; member 463 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll() 531 …SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, SDL_TRUE, norm_x, norm_y, 1.… in SDL_EVDEV_Poll() 535 …SDL_SendTouch(item->fd, item->touchscreen_data->slots[j].tracking_id, SDL_FALSE, norm_x, norm_y, 1… in SDL_EVDEV_Poll() 536 item->touchscreen_data->slots[j].tracking_id = -1; in SDL_EVDEV_Poll() 540 … SDL_SendTouchMotion(item->fd, item->touchscreen_data->slots[j].tracking_id, norm_x, norm_y, 1.0f); in SDL_EVDEV_Poll() 648 item->touchscreen_data->slots[i].tracking_id = -1; in SDL_EVDEV_init_touchscreen() 723 if (item->touchscreen_data->slots[i].tracking_id < 0 && in SDL_EVDEV_sync_device() 725 item->touchscreen_data->slots[i].tracking_id = mt_req_values[i]; in SDL_EVDEV_sync_device() 727 } else if (item->touchscreen_data->slots[i].tracking_id >= 0 && in SDL_EVDEV_sync_device() [all …]
|
/third_party/libinput/tools/ |
D | libinput-measure-touchpad-pressure.py | 106 def __init__(self, device, tracking_id): argument 108 self.tracking_id = tracking_id 160 return fmt.values([self.tracking_id, False, False, False, False, 163 s = fmt.values([self.tracking_id, self.was_down, True, self.was_palm, 170 s = fmt.values([self.tracking_id, self.is_down, not self.is_down, 243 def start_new_sequence(self, tracking_id): argument 244 self.sequences.append(TouchSequence(self, tracking_id))
|
D | libinput-measure-touch-size.py | 99 def __init__(self, device, tracking_id): argument 101 self.tracking_id = tracking_id 235 def start_new_sequence(self, tracking_id): argument 236 self.sequences.append(TouchSequence(self, tracking_id))
|
/third_party/mtdev/src/ |
D | core.c | 128 sid[sn] = state->data[i].tracking_id; in assign_tracking_id() 139 data[i].tracking_id = GETBIT(touch, i) ? nid[i] : MT_ID_NULL; in assign_tracking_id() 296 id = data[i].tracking_id; in apply_typeA_changes() 298 if (state->data[slot].tracking_id != id) in apply_typeA_changes() 318 tdata.tracking_id = MT_ID_NULL; in apply_typeA_changes() 362 dev->state->data[i].tracking_id = MT_ID_NULL; in mtdev_init()
|
D | state.h | 49 int tracking_id; member
|
/third_party/libinput/src/ |
D | evdev-totem.c | 669 int tracking_id; in totem_interface_initial_proximity() local 671 tracking_id = libevdev_get_slot_value(device->evdev, in totem_interface_initial_proximity() 674 if (tracking_id == -1) in totem_interface_initial_proximity()
|
D | evdev-mt-touchpad.c | 2099 int tracking_id; in tp_sync_touch() local 2132 &tracking_id) && in tp_sync_touch() 2133 tracking_id != -1) in tp_sync_touch()
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/ |
D | static_analysis.cc | 529 if (func->tracking_id() != nullptr) { in GetEvaluatorFor() 530 MS_LOG(DEBUG) << "The tracking_id: " << func->tracking_id()->DebugString(); in GetEvaluatorFor() 533 if (func->tracking_id() == nullptr || func->isa<abstract::MetaFuncGraphAbstractClosure>() || in GetEvaluatorFor()
|