Home
last modified time | relevance | path

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

/ohos5.0/base/powermgr/display_manager/brightness_manager/include/
H A Dlux_threshold_config_parser.h31 std::vector<PointXy> brightenPoints{};
32 std::vector<PointXy> darkenPoints{};
37 std::vector<PointXy> brightenPointsForLevel{};
38 std::vector<PointXy> darkenPointsForLevel{};
H A Dlight_lux_manager.h56 float CalcDelta(const std::vector<PointXy>& pointList) const;
61 std::vector<PointXy> GetBrightenLuxList();
62 std::vector<PointXy> GetDarkenLuxList();
H A Dcalculation_config_parser.h23 struct PointXy { struct
36 std::vector<PointXy> defaultPoints{
H A Dconfig_parser_base.h41 …void ParsePointXy(const Json::Value& root, const std::string& name, std::vector<PointXy>& data) co…
42 …const std::string PointXyToString(const std::string& name, const std::vector<PointXy>& data) const;
H A Dcalculation_curve.h49 float GetBrightnessCurveLevel(std::vector<PointXy>& linePointsList, float lux);
/ohos5.0/base/powermgr/display_manager/brightness_manager/src/
H A Dlight_lux_manager.cpp163 std::vector<PointXy> brightenLinePointsList = GetBrightenLuxList(); in UpdateParam()
168 std::vector<PointXy> darkenLinePointsList = GetDarkenLuxList(); in UpdateParam()
177 float LightLuxManager::CalcDelta(const std::vector<PointXy>& pointsList) const in CalcDelta()
184 PointXy temp = pointsList.front(); in CalcDelta()
185 std::vector<PointXy>::const_iterator it; in CalcDelta()
284 std::vector<PointXy> LightLuxManager::GetBrightenLuxList() in GetBrightenLuxList()
286 std::vector<PointXy> brightenPointsList; in GetBrightenLuxList()
293 std::vector<PointXy> LightLuxManager::GetDarkenLuxList() in GetDarkenLuxList()
295 std::vector<PointXy> darkenPointsList; in GetDarkenLuxList()
H A Dcalculation_curve.cpp54 std::vector<PointXy> curve = mCurveConfig.calculationConfig.defaultPoints; in GetCurrentBrightness()
64 float BrightnessCalculationCurve::GetBrightnessCurveLevel(std::vector<PointXy>& linePointsList, flo… in GetBrightnessCurveLevel()
H A Dconfig_parser_base.cpp147 const Json::Value& root, const std::string& name, std::vector<PointXy>& data) const in ParsePointXy()
160 PointXy pointXy{}; in ParsePointXy()
180 const std::string& name, const std::vector<PointXy>& data) const in PointXyToString()