Home
last modified time | relevance | path

Searched refs:mInitialValue (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DConfigDeclaration.java32 private final RawPropValues mInitialValue; field in ConfigDeclaration
38 this.mInitialValue = initialValue; in ConfigDeclaration()
46 .append(", mInitialValue = ").append(mInitialValue) in toString()
62 && Objects.equals(mInitialValue, other.getInitialValue()) in equals()
68 return Objects.hash(mConfig, mInitialValue, mInitialAreaValuesByAreaId.contentHashCode()); in hashCode()
82 return mInitialValue; in getInitialValue()
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DLinearVhalEventGenerator.java32 private float mInitialValue; field in LinearVhalEventGenerator
45 mInitialValue = 1000; in reset()
47 mInitialValue = 0; in reset()
57 mInitialValue = initialValue; in setInitialValue()
79 String.format("%f", mInitialValue), String.format("%f", mInitialValue), in start()
/packages/services/Car/experimental/tests/experimentalcarservice_unit_test/src/com/android/experimentalcar/
DGazeDriverAwarenessSupplierTest.java50 private float mInitialValue; field in GazeDriverAwarenessSupplierTest
62 mInitialValue = in setUp()
92 .emitAwarenessEvent(new DriverAwarenessEvent(START_TIME_MILLIS, mInitialValue)); in testonReady_initialCallbackIsGenerated()
105 .emitAwarenessEvent(new DriverAwarenessEvent(START_TIME_MILLIS, mInitialValue)); in testprocessDetectionEvent_noGazeDataProvided()
115 .emitAwarenessEvent(new DriverAwarenessEvent(START_TIME_MILLIS, mInitialValue)); in testprocessDetectionEvent_neverExceedsOne()
118 float attention = mInitialValue; in testprocessDetectionEvent_neverExceedsOne()
141 .emitAwarenessEvent(new DriverAwarenessEvent(START_TIME_MILLIS, mInitialValue)); in testprocessDetectionEvent_neverFallsBelowZero()
144 float attention = mInitialValue; in testprocessDetectionEvent_neverFallsBelowZero()
/packages/modules/StatsD/statsd/src/condition/
DSimpleConditionTracker.cpp49 mInitialValue = simplePredicate.has_initial_value() in SimpleConditionTracker()
152 (mInitialValue == ConditionState::kFalse && mSlicedConditionState.empty()) ? false in handleStopAll()
162 mInitialValue = ConditionState::kFalse; in handleStopAll()
201 if (matchStart && mInitialValue != ConditionState::kTrue) { in handleConditionEvent()
205 } else if (mInitialValue != ConditionState::kFalse) { in handleConditionEvent()
249 if (mInitialValue == ConditionState::kFalse && startedCount == 0) { in handleConditionEvent()
307 conditionCache[mIndex] = mInitialValue; in evaluateCondition()
319 conditionCache[mIndex] = mInitialValue; in evaluateCondition()
329 ConditionState overallState = mInitialValue; in evaluateCondition()
368 conditionState = conditionState | mInitialValue; in isConditionMet()
[all …]
DSimpleConditionTracker.h112 ConditionState mInitialValue; variable