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:flingVelocity
(Results
1 - 8
of
8
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_scroller.cpp
206
double
flingVelocity
= 0.0;
in Fling()
local
211
flingVelocity
= args[0]->ToNumber<double>();
in Fling()
212
if (NearZero(
flingVelocity
)) {
in Fling()
216
flingVelocity
= Dimension(
flingVelocity
, DimensionUnit::VP).ConvertToPx();
in Fling()
217
scrollController->Fling(
flingVelocity
);
in Fling()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H
A
D
scrollable_controller.cpp
118
void ScrollableController::Fling(double
flingVelocity
)
in Fling()
argument
124
ACE_SCOPED_TRACE("Fling,
flingVelocity
:%f, id:%d, tag:%s", static_cast<float>(
flingVelocity
),
in Fling()
126
pattern->Fling(
flingVelocity
);
in Fling()
H
A
D
scrollable_controller.h
49
void Fling(double
flingVelocity
) override;
H
A
D
scrollable_pattern.h
476
virtual void Fling(double
flingVelocity
);
H
A
D
scrollable_pattern.cpp
2489
void ScrollablePattern::Fling(double
flingVelocity
)
in Fling()
argument
2508
scrollable->HandleOverScroll(
flingVelocity
);
in Fling()
2511
scrollable->StartScrollAnimation(0.0f,
flingVelocity
);
in Fling()
/foundation/arkui/ace_engine/test/unittest/core/pattern/scroll/
H
A
D
scroll_controller_test_ng.cpp
329
* @tc.steps: step1. Fling, the
flingVelocity
greater than 0
in HWTEST_F()
334
const float
flingVelocity
= finalPosition * FRICTION * FRICTION_SCALE;
in HWTEST_F()
local
335
positionController_->Fling(
flingVelocity
);
in HWTEST_F()
341
* @tc.steps: step2. Fling, the
flingVelocity
less than 0
in HWTEST_F()
344
positionController_->Fling(-
flingVelocity
);
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H
A
D
scroll_controller_base.h
97
virtual void Fling(double
flingVelocity
) {}
in Fling()
argument
/foundation/arkui/ace_engine/test/unittest/core/pattern/scrollable/
H
A
D
scrollable_cover_test_ng.cpp
1131
double
flingVelocity
= 150.0;
in HWTEST_F()
local
1132
controller->Fling(
flingVelocity
);
in HWTEST_F()
Completed in 21 milliseconds