Home
last modified time | relevance | path

Searched refs:sequentialEffect (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/vibrator/
H A DStartSequentialEffectStep.java53 public final CombinedVibration.Sequential sequentialEffect; field in StartSequentialEffectStep
69 sequentialEffect = effect; in StartSequentialEffectStep()
88 CombinedVibration effect = sequentialEffect.getEffects().get(currentIndex); in play()
131 if (nextIndex >= sequentialEffect.getEffects().size()) { in nextStep()
134 long nextEffectDelay = sequentialEffect.getDelays().get(nextIndex); in nextStep()
136 return new StartSequentialEffectStep(conductor, nextStartTime, sequentialEffect, in nextStep()
H A DVibrationStepConductor.java153 CombinedVibration.Sequential sequentialEffect = toSequential(mVibration.getEffect()); in prepareToStart() local
156 mRemainingStartSequentialEffectSteps = sequentialEffect.getEffects().size(); in prepareToStart()
157 mNextSteps.offer(new StartSequentialEffectStep(this, sequentialEffect)); in prepareToStart()
/aosp14/frameworks/base/core/java/android/os/
H A DCombinedVibration.java267 Sequential sequentialEffect = (Sequential) effect; in addNext() local
269 mEffects.addAll(sequentialEffect.getEffects()); in addNext()
270 mDelays.addAll(sequentialEffect.getDelays()); in addNext()