Lines Matching refs:mappers
135 std::vector<std::unique_ptr<InputMapper>> mappers; in addEventHubDevice() local
139 mDevices.insert({eventHubId, std::make_pair(std::move(contextPtr), std::move(mappers))}); in addEventHubDevice()
145 mappers.push_back(std::make_unique<SwitchInputMapper>(*contextPtr)); in addEventHubDevice()
150 mappers.push_back(std::make_unique<RotaryEncoderInputMapper>(*contextPtr)); in addEventHubDevice()
155 mappers.push_back(std::make_unique<VibratorInputMapper>(*contextPtr)); in addEventHubDevice()
175 mappers.push_back( in addEventHubDevice()
181 mappers.push_back(std::make_unique<CursorInputMapper>(*contextPtr)); in addEventHubDevice()
186 mappers.push_back(std::make_unique<MultiTouchInputMapper>(*contextPtr)); in addEventHubDevice()
188 mappers.push_back(std::make_unique<SingleTouchInputMapper>(*contextPtr)); in addEventHubDevice()
193 mappers.push_back(std::make_unique<JoystickInputMapper>(*contextPtr)); in addEventHubDevice()
198 mappers.push_back(std::make_unique<ExternalStylusInputMapper>(*contextPtr)); in addEventHubDevice()
202 mDevices.insert({eventHubId, std::make_pair(std::move(contextPtr), std::move(mappers))}); in addEventHubDevice()
398 auto& mappers = devicePair.second; in getState() local
399 for (auto& mapperPtr : mappers) { in getState()
477 auto& mappers = devicePair.second; in getMapperCount() local
478 count += mappers.size(); in getMapperCount()