Searched refs:for_each_mapper (Results 1 – 2 of 2) sorted by relevance
166 for_each_mapper([&dump](InputMapper& mapper) { mapper.dump(dump); }); in dump()357 for_each_mapper([this, when, &readerConfig, changes, &out](InputMapper& mapper) { in configureInternal()374 for_each_mapper([&](InputMapper& mapper) { out += mapper.reset(when); }); in reset()438 for_each_mapper([&](InputMapper& mapper) { out += mapper.timeoutExpired(when); }); in timeoutExpired()444 for_each_mapper([&](InputMapper& mapper) { out += mapper.updateExternalStylusState(state); }); in updateExternalStylusState()456 for_each_mapper( in getDeviceInfo()576 for_each_mapper([&result, sourceMask, keyCodes, outFlags](InputMapper& mapper) { in markSupportedKeyCodes()604 for_each_mapper([&](InputMapper& mapper) { out += mapper.vibrate(sequence, repeat, token); }); in vibrate()610 for_each_mapper([&](InputMapper& mapper) { out += mapper.cancelVibrate(token); }); in cancelVibrate()616 for_each_mapper([&vibrating](InputMapper& mapper) { vibrating |= mapper.isVibrating(); }); in isVibrating()[all …]
234 inline void for_each_mapper(std::function<void(InputMapper&)> f) { in for_each_mapper() function