Lines Matching refs:mappers
149 std::vector<std::unique_ptr<InputMapper>> mappers; in addEventHubDevice() local
153 mDevices.insert({eventHubId, std::make_pair(std::move(contextPtr), std::move(mappers))}); in addEventHubDevice()
159 mappers.push_back(std::make_unique<SwitchInputMapper>(*contextPtr)); in addEventHubDevice()
164 mappers.push_back(std::make_unique<RotaryEncoderInputMapper>(*contextPtr)); in addEventHubDevice()
169 mappers.push_back(std::make_unique<VibratorInputMapper>(*contextPtr)); in addEventHubDevice()
195 mappers.push_back( in addEventHubDevice()
201 mappers.push_back(std::make_unique<CursorInputMapper>(*contextPtr)); in addEventHubDevice()
206 mappers.push_back(std::make_unique<MultiTouchInputMapper>(*contextPtr)); in addEventHubDevice()
208 mappers.push_back(std::make_unique<SingleTouchInputMapper>(*contextPtr)); in addEventHubDevice()
213 mappers.push_back(std::make_unique<JoystickInputMapper>(*contextPtr)); in addEventHubDevice()
218 mappers.push_back(std::make_unique<SensorInputMapper>(*contextPtr)); in addEventHubDevice()
223 mappers.push_back(std::make_unique<ExternalStylusInputMapper>(*contextPtr)); in addEventHubDevice()
227 mDevices.insert({eventHubId, std::make_pair(std::move(contextPtr), std::move(mappers))}); in addEventHubDevice()
448 auto& mappers = devicePair.second; in getState() local
449 for (auto& mapperPtr : mappers) { in getState()
590 auto& mappers = devicePair.second; in getMapperCount() local
591 count += mappers.size(); in getMapperCount()