Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/progress/
H A Drender_progress.cpp27 cachedValue_ = progress->GetCachedValue(); in Update()
32 …if (min_ >= max_ || value_ > max_ || value_ < min_ || cachedValue_ < min_ || cachedValue_ > max_) { in Update()
38 cachedRatio_ = (cachedValue_ - min_) / (max_ - min_); in Update()
H A Drender_progress.h82 double cachedValue_ = PROGRESS_DEFAULT_CACHED_VALUE; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dprogress_data.h52 cachedValue_ = cachedValue; in SetCachedValue()
92 return cachedValue_; in GetCachedValue()
100 double cachedValue_ { 0.0 };
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_progress.cpp90 progress.cachedValue_ = StringToDouble(val); in SetSpecializedAttr()
91 if (progress.cachedValue_ > progress.max_) { in SetSpecializedAttr()
92 progress.cachedValue_ = progress.max_; in SetSpecializedAttr()
94 if (progress.cachedValue_ < progress.min_) { in SetSpecializedAttr()
95 progress.cachedValue_ = progress.min_; in SetSpecializedAttr()
220 progressChild_->SetCachedValue(cachedValue_); in PrepareSpecializedComponent()
313 progressChild_ = CreateProgressComponent(min_, percent_, cachedValue_, max_, type_); in InitProgressIfNeed()
H A Ddom_progress.h49 double cachedValue_ = 0.0; variable