Searched refs:for_each_mapper (Results 1 – 2 of 2) sorted by relevance
168 for_each_mapper([&dump](InputMapper& mapper) { mapper.dump(dump); }); in dump()363 for_each_mapper([this, when, &readerConfig, changes, &out](InputMapper& mapper) { in configureInternal()392 for_each_mapper([&](InputMapper& mapper) { out += mapper.reset(when); }); in reset()456 for_each_mapper([&](InputMapper& mapper) { out += mapper.timeoutExpired(when); }); in timeoutExpired()462 for_each_mapper([&](InputMapper& mapper) { out += mapper.updateExternalStylusState(state); }); in updateExternalStylusState()474 for_each_mapper( in getDeviceInfo()594 for_each_mapper([&result, sourceMask, keyCodes, outFlags](InputMapper& mapper) { in markSupportedKeyCodes()622 for_each_mapper([&](InputMapper& mapper) { out += mapper.vibrate(sequence, repeat, token); }); in vibrate()628 for_each_mapper([&](InputMapper& mapper) { out += mapper.cancelVibrate(token); }); in cancelVibrate()634 for_each_mapper([&vibrating](InputMapper& mapper) { vibrating |= mapper.isVibrating(); }); in isVibrating()[all …]
237 inline void for_each_mapper(std::function<void(InputMapper&)> f) { in for_each_mapper() function