Home
last modified time | relevance | path

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

/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp419 auto durations = info.primitiveDurations.valueOr({}); in vibratorGetInfo()
443 jfloat minFrequency = static_cast<jfloat>(info.minFrequency.valueOr(NAN)); in vibratorGetInfo()
444 jfloat resonantFrequency = static_cast<jfloat>(info.resonantFrequency.valueOr(NAN)); in vibratorGetInfo()
445 jfloat frequencyResolution = static_cast<jfloat>(info.frequencyResolution.valueOr(NAN)); in vibratorGetInfo()
/frameworks/native/services/vibratorservice/
DVibratorHalWrapper.cpp278 auto durations = getPrimitiveDurations().valueOr({}); in performComposedEffect()
/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalWrapper.h67 const T valueOr(T&& defaultValue) const { return mValue.value_or(defaultValue); } in valueOr() function