Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/hal/
DCarPropertyUtils.java183 int indexOfValues = 0; in toMixedVehiclePropValue() local
186 v.stringValue = (String) values[indexOfValues]; in toMixedVehiclePropValue()
187 indexOfValues++; in toMixedVehiclePropValue()
192 v.int32Values.add((Boolean) values[indexOfValues] ? 1 : 0); // in HAL, 1 indicates true in toMixedVehiclePropValue()
193 indexOfValues++; in toMixedVehiclePropValue()
202 v.int32Values.add((Integer) values[indexOfValues]); in toMixedVehiclePropValue()
203 indexOfValues++; in toMixedVehiclePropValue()
211 v.int64Values.add((Long) values[indexOfValues]); in toMixedVehiclePropValue()
212 indexOfValues++; in toMixedVehiclePropValue()
220 v.floatValues.add((Float) values[indexOfValues]); in toMixedVehiclePropValue()
[all …]