Lines Matching refs:type

25  * data is stored in a sensor-type specific format in the object's float and byte arrays.
31 * Additionally, calling a conversion method on a CarSensorEvent object with an inappropriate type
37 * Index in {@link #floatValues} for {@link CarSensorManager#SENSOR_TYPE_FUEL_LEVEL} type of
42 * Index in {@link #floatValues} for {@link CarSensorManager#SENSOR_TYPE_FUEL_LEVEL} type of
47 * Index in {@link #intValues} for {@link CarSensorManager#SENSOR_TYPE_FUEL_LEVEL} type of
54 * sensor type.
124 /** Sensor type for this event like {@link CarSensorManager#SENSOR_TYPE_CAR_SPEED}. */
133 * array holding float type of sensor data. If the sensor has single value, only floatValues[0]
136 /** array holding int type of sensor data */
192 private void checkType(int type) {
193 if (sensorType == type) {
197 "Invalid sensor type: expected %d, got %d", type, sensorType));
210 * object with type {@link CarSensorManager#SENSOR_TYPE_ENVIRONMENT}.
234 * object with type {@link CarSensorManager#SENSOR_TYPE_NIGHT}.
257 * object with type {@link CarSensorManager#SENSOR_TYPE_GEAR}.
280 * object with type {@link CarSensorManager#SENSOR_TYPE_PARKING_BRAKE}.
308 * object with type {@link CarSensorManager#SENSOR_TYPE_FUEL_LEVEL}.
346 * object with type {@link CarSensorManager#SENSOR_TYPE_ODOMETER}.
369 * object with type {@link CarSensorManager#SENSOR_TYPE_RPM}.
392 * object with type {@link CarSensorManager#SENSOR_TYPE_CAR_SPEED}.
415 * object with type {@link CarSensorManager#SENSOR_TYPE_DRIVING_STATUS}.
435 sb.append("type:" + Integer.toHexString(sensorType));