Searched refs:cachedValue_ (Results 1 – 5 of 5) sorted by relevance
27 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()
82 double cachedValue_ = PROGRESS_DEFAULT_CACHED_VALUE; variable
52 cachedValue_ = cachedValue; in SetCachedValue()92 return cachedValue_; in GetCachedValue()100 double cachedValue_ { 0.0 };
90 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()
49 double cachedValue_ = 0.0; variable