Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:cachedValue_
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H
A
D
progress_data.h
52
cachedValue_
= cachedValue;
in SetCachedValue()
92
return
cachedValue_
;
in GetCachedValue()
100
double
cachedValue_
{ 0.0 };
/foundation/arkui/ace_engine/frameworks/core/components/progress/
H
A
D
render_progress.cpp
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()
H
A
D
render_progress.h
82
double
cachedValue_
= PROGRESS_DEFAULT_CACHED_VALUE;
member in OHOS::Ace::RenderProgress
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_progress.cpp
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()
H
A
D
dom_progress.h
49
double
cachedValue_
= 0.0;
member in OHOS::Ace::Framework::final
Completed in 4 milliseconds