/frameworks/base/core/java/android/hardware/camera2/params/ |
D | TonemapCurve.java | 196 final float[] curve = getCurve(colorChannel); in getPoint() local 198 final float pIn = curve[index * POINT_SIZE + OFFSET_POINT_IN]; in getPoint() 199 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT]; in getPoint() 240 float[] curve = getCurve(colorChannel); in copyColorCurve() local 241 System.arraycopy(curve, /*srcPos*/0, destination, offset, curve.length); in copyColorCurve() 311 float[] curve = getCurve(colorChannel); in curveToString() local 312 int pointCount = curve.length / POINT_SIZE; in curveToString() 315 sb.append(curve[j]); in curveToString() 317 sb.append(curve[j+1]); in curveToString()
|
/frameworks/av/services/audiopolicy/engine/common/src/ |
D | VolumeGroup.cpp | 59 void VolumeGroup::add(const sp<VolumeCurve> &curve) in add() argument 61 mGroupVolumeCurves.add(curve); in add()
|
D | EngineBase.cpp | 200 sp<VolumeCurve> curve = new VolumeCurve(deviceCat); in processParsingResult() local 202 curve->add({point.index, point.attenuationInMb}); in processParsingResult() 204 volumeGroup->add(curve); in processParsingResult()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | BrightnessMappingStrategy.java | 571 Pair<float[], float[]> curve = insertControlPoint(newLux, newBrightness, userLux, in getAdjustedCurve() local 573 newLux = curve.first; in getAdjustedCurve() 574 newBrightness = curve.second; in getAdjustedCurve() 578 curve = insertControlPoint(lux, brightness, userLux, userBrightness); in getAdjustedCurve() 579 PLOG.logCurve("user adjusted curve", curve.first ,curve.second); in getAdjustedCurve() 779 Pair<float[], float[]> curve = getAdjustedCurve(mLux, mBrightness, mUserLux, in computeSpline() local 781 mSpline = Spline.createSpline(curve.first, curve.second); in computeSpline() 1210 Pair<float[], float[]> curve = getAdjustedCurve(defaultLux, defaultBrightness, mUserLux, in computeSpline() local 1212 float[] lux = curve.first; in computeSpline() 1213 float[] brightness = curve.second; in computeSpline() [all …]
|
D | DisplayManagerService.java | 2688 Pair<float[], float[]> curve = config.getCurve(); in isBrightnessConfigurationTooDark() local 2689 float[] lux = curve.first; in isBrightnessConfigurationTooDark() 2690 float[] nits = curve.second; in isBrightnessConfigurationTooDark()
|
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
D | PersistentDataStoreTest.java | 204 Pair<float[], float[]> curve = config.getCurve(); in testLoadingBrightnessConfigurations() local 207 assertArrayEquals(expectedLux, curve.first, "lux"); in testLoadingBrightnessConfigurations() 208 assertArrayEquals(expectedNits, curve.second, "nits"); in testLoadingBrightnessConfigurations() 212 curve = config.getCurve(); in testLoadingBrightnessConfigurations() 215 assertArrayEquals(expectedLux, curve.first, "lux"); in testLoadingBrightnessConfigurations() 216 assertArrayEquals(expectedNits, curve.second, "nits"); in testLoadingBrightnessConfigurations()
|
/frameworks/native/libs/input/ |
D | VelocityControl.cpp | 141 void CurvedVelocityControl::setCurve(const std::vector<AccelerationCurveSegment>& curve) { in setCurve() argument 142 mCurveSegments = curve; in setCurve()
|
/frameworks/av/services/audiopolicy/engine/common/include/ |
D | VolumeGroup.h | 37 void add(const sp<VolumeCurve> &curve);
|
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
D | BrightnessConfigurationTest.java | 64 Pair<float[], float[]> curve = config.getCurve(); in testSetCurveIsUnmodified() local 65 assertArrayEquals(LUX_LEVELS, curve.first, "lux"); in testSetCurveIsUnmodified() 66 assertArrayEquals(NITS_LEVELS, curve.second, "nits"); in testSetCurveIsUnmodified()
|
/frameworks/native/include/input/ |
D | VelocityControl.h | 139 void setCurve(const std::vector<AccelerationCurveSegment>& curve);
|
/frameworks/base/wifi/tests/src/android/net/wifi/ |
D | WifiNetworkScoreCacheTest.java | 89 private static ScoredNetwork buildScoredNetwork(WifiKey key, RssiCurve curve) { in buildScoredNetwork() argument 90 return new ScoredNetwork(new NetworkKey(key), curve); in buildScoredNetwork()
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | artistic1.rscript | 58 // apply curve
|
D | threshold.rscript | 47 // the gaussian curve begins to lose its shape
|
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
D | artistic1.rscript | 58 // apply curve
|
D | threshold.rscript | 47 // the gaussian curve begins to lose its shape
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | artistic1.rscript | 58 // apply curve
|
D | threshold.rscript | 47 // the gaussian curve begins to lose its shape
|
D | threshold_half.rscript | 47 // the gaussian curve begins to lose its shape
|
/frameworks/base/core/java/android/hardware/display/ |
D | DisplayManagerGlobal.java | 1047 Curve curve = mDm.getMinimumBrightnessCurve(); in getMinimumBrightnessCurve() local 1048 return Pair.create(curve.getX(), curve.getY()); in getMinimumBrightnessCurve()
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
D | CameraMetadataNative.java | 2085 float[][] curve = new float[3][]; in setTonemapCurve() local 2088 curve[i] = new float[pointCount * TonemapCurve.POINT_SIZE]; in setTonemapCurve() 2089 tc.copyColorCurve(i, curve[i], 0); in setTonemapCurve() 2091 setBase(CaptureRequest.TONEMAP_CURVE_RED, curve[0]); in setTonemapCurve() 2092 setBase(CaptureRequest.TONEMAP_CURVE_GREEN, curve[1]); in setTonemapCurve() 2093 setBase(CaptureRequest.TONEMAP_CURVE_BLUE, curve[2]); in setTonemapCurve()
|
/frameworks/libs/systemui/weathereffects/graphics/assets/shaders/ |
D | glass_rain.agsl | 186 // Apply a curve to the time.
|
/frameworks/base/packages/SystemUI/docs/ |
D | physics-animation-layout.md | 45 …0 degree turn to the right, the physics animations will cause the view to curve naturally towards …
|
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/ |
D | AccessPointTest.java | 1075 RssiCurve curve = list.get(0).getScore().attributes.getParcelable( in testScoredNetworkCacheBundling() local 1077 assertThat(curve).isEqualTo(FAST_BADGE_CURVE); in testScoredNetworkCacheBundling()
|
/frameworks/proto_logging/stats/ |
D | atoms.proto | 17735 /** Which ec curve was selected if elliptic curve cryptography is in use **/ 17781 // Which ec curve was selected if elliptic curve cryptography is in use 23906 * expressed as a curve where each point is a pair of ambient light (lux) and the corresponding
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |