/frameworks/native/services/inputflinger/reader/mapper/ |
D | JoystickInputMapper.h | 52 float resolution; // normalized resolution in units/mm member 63 float resolution) { in initialize() 75 this->resolution = resolution; in initialize()
|
D | JoystickInputMapper.cpp | 46 axis.resolution); in addMotionRange() 53 axis.fuzz, axis.resolution); in addMotionRange() 96 axis.min, axis.max, axis.flat, axis.fuzz, axis.resolution); in dump() 104 axis.rawAxisInfo.resolution); in dump() 142 rawAxisInfo.resolution * scale); in configure() 148 rawAxisInfo.resolution * scale); in configure() 153 rawAxisInfo.resolution * scale); in configure()
|
D | InputMapper.cpp | 88 axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
|
D | TouchInputMapper.cpp | 230 x.fuzz, x.resolution); in populateDeviceInfo() 232 y.fuzz, y.resolution); in populateDeviceInfo() 234 x.fuzz, x.resolution); in populateDeviceInfo() 236 y.fuzz, y.resolution); in populateDeviceInfo() 833 mOrientedRanges.touchMajor.resolution = 0; in configureSurface() 844 mOrientedRanges.toolMajor.resolution = 0; in configureSurface() 855 mOrientedRanges.size.resolution = 0; in configureSurface() 879 mOrientedRanges.pressure.resolution = 0; in configureSurface() 901 mOrientedRanges.tilt.resolution = 0; in configureSurface() 915 mOrientedRanges.orientation.resolution = 0; in configureSurface() [all …]
|
/frameworks/native/services/inputflinger/host/ |
D | InputDriver.cpp | 69 float resolution; member 167 float resolution) { in inputReportDefinitionDeclareUsageInt() argument 170 .usage = usage, .min = min, .max = max, .resolution = resolution}); in inputReportDefinitionDeclareUsageInt() 335 input_usage_t usage, int32_t min, int32_t max, float resolution) { in input_report_definition_declare_usage_int() argument 337 driver->inputReportDefinitionDeclareUsageInt(report, id, usage, min, max, resolution); in input_report_definition_declare_usage_int()
|
D | InputDriver.h | 57 float resolution) = 0; 104 float resolution) override; 157 input_usage_t usage, int32_t min, int32_t max, float resolution);
|
/frameworks/native/services/surfaceflinger/ |
D | LayerStats.cpp | 76 destinationLocation(layer->hwcFrame.left, layerGlobal.resolution[0], true)); in traverseLayerTreeStatsLocked() 78 destinationLocation(layer->hwcFrame.top, layerGlobal.resolution[1], false)); in traverseLayerTreeStatsLocked() 81 layerGlobal.resolution[0], true)); in traverseLayerTreeStatsLocked() 84 layerGlobal.resolution[1], false)); in traverseLayerTreeStatsLocked()
|
/frameworks/native/services/sensorservice/ |
D | RotationVectorSensor.cpp | 39 .resolution = 1.0f / (1<<24), in RotationVectorSensor() 125 .resolution = 1.0f / (1<<24), in GyroDriftSensor()
|
D | OrientationSensor.cpp | 40 .resolution = 1.0f/256.0f, // FIXME: real value here in OrientationSensor()
|
D | LinearAccelerationSensor.cpp | 42 .resolution = gsensor.getResolution(), in LinearAccelerationSensor()
|
D | CorrectedGyroSensor.cpp | 48 .resolution = mGyro.getResolution(), in CorrectedGyroSensor()
|
D | GravitySensor.cpp | 47 .resolution = mAccelerometer.getResolution(), in GravitySensor()
|
/frameworks/native/include/input/ |
D | InputDevice.h | 82 float resolution; member 105 float min, float max, float flat, float fuzz, float resolution);
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 746 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument 747 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange() 855 float resolution) { in MotionRange() argument 862 mResolution = resolution; in MotionRange()
|
/frameworks/native/libs/input/ |
D | InputDevice.cpp | 202 float flat, float fuzz, float resolution) { in addMotionRange() argument 203 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; in addMotionRange()
|
/frameworks/native/services/surfaceflinger/layerproto/ |
D | LayerProtoParser.cpp | 43 layerGlobal.resolution = {layersProto.resolution().w(), layersProto.resolution().h()}; in generateLayerGlobalInfo()
|
/frameworks/base/core/jni/ |
D | android_view_InputDevice.cpp | 74 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution); in android_view_InputDevice_create()
|
D | android_hardware_SensorManager.cpp | 58 jfieldID resolution; member 101 sensorOffsets.resolution = GetFieldIDOrDie(_env, sensorClass, "mResolution","F"); in nativeClassInit() 173 env->SetFloatField(sensor, sensorOffsets.resolution, nativeSensor.getResolution()); in translateNativeSensorToJavaSensor()
|
/frameworks/native/services/sensorservice/hidl/ |
D | utils.cpp | 44 dst.resolution = src.getResolution(); in convertSensor()
|
/frameworks/native/libs/sensor/tests/ |
D | Sensor_test.cpp | 64 hwSensor.resolution = 1.f; in getTestSensorT()
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
D | PrintSpoolerService.java | 1025 Resolution resolution = attributes.getResolution(); in doWriteStateLocked() local 1026 if (resolution != null) { in doWriteStateLocked() 1028 serializer.attribute(null, ATTR_ID, resolution.getId()); in doWriteStateLocked() 1030 resolution.getHorizontalDpi())); in doWriteStateLocked() 1032 resolution.getVerticalDpi())); in doWriteStateLocked() 1034 resolution.getLabel()); in doWriteStateLocked() 1293 Resolution resolution = new Resolution(id, label, horizontalDpi, verticalDpi); in parsePrintJobLocked() local 1294 builder.setResolution(resolution); in parsePrintJobLocked()
|
/frameworks/native/services/surfaceflinger/layerproto/include/layerproto/ |
D | LayerProtoParser.h | 124 int2 resolution;
|
/frameworks/base/core/java/android/print/ |
D | PrintAttributes.java | 146 public void setResolution(Resolution resolution) { in setResolution() argument 147 mResolution = resolution; in setResolution() 1412 public @NonNull Builder setResolution(@NonNull Resolution resolution) { in setResolution() argument 1413 mAttributes.setResolution(resolution); in setResolution()
|
/frameworks/native/services/inputflinger/reader/include/ |
D | EventHub.h | 67 int32_t resolution; // resolution in units per mm or radians per mm member 75 resolution = 0; in clear()
|
/frameworks/libs/native_bridge_support/overriding/libc/ |
D | Android.bp | 87 // meaningful name resolution.
|