Lines Matching refs:newArgs
171 NotifyMotionArgs newArgs{args}; in removePointerIds() local
172 newArgs.pointerProperties.clear(); in removePointerIds()
173 newArgs.pointerCoords.clear(); in removePointerIds()
183 newArgs.action = ACTION_UNKNOWN; in removePointerIds()
187 newArgs.pointerProperties.push_back(args.pointerProperties[i]); in removePointerIds()
188 newArgs.pointerCoords.push_back(args.pointerCoords[i]); in removePointerIds()
190 newActionIndex = newArgs.getPointerCount() - 1; in removePointerIds()
194 if (isPointerUpOrDownAction && newArgs.action != ACTION_UNKNOWN) { in removePointerIds()
195 newArgs.action = in removePointerIds()
198 if (newArgs.getPointerCount() == 1) { in removePointerIds()
200 newArgs.action = AMOTION_EVENT_ACTION_DOWN; in removePointerIds()
202 newArgs.action = AMOTION_EVENT_ACTION_UP; in removePointerIds()
206 return newArgs; in removePointerIds()