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:LeastSquareImpl
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/base/geometry/
H
A
D
least_square_impl.h
30
class ACE_EXPORT
LeastSquareImpl
{
class
36
explicit
LeastSquareImpl
(int32_t paramsNum) : paramsNum_(paramsNum) {}
in LeastSquareImpl()
function in OHOS::Ace::LeastSquareImpl
42
LeastSquareImpl
(int32_t paramsNum, int32_t countNum) : paramsNum_(paramsNum), countNum_(countNum) {}
in LeastSquareImpl()
function in OHOS::Ace::LeastSquareImpl
44
LeastSquareImpl
() = default;
45
~
LeastSquareImpl
() = default;
H
A
D
least_square_impl.cpp
22
bool
LeastSquareImpl
::GetLeastSquareParams(std::vector<double>& params)
in GetLeastSquareParams()
/foundation/arkui/ace_engine/test/unittest/base/
H
A
D
least_square_impl_test.cpp
37
* @tc.desc: Test all functions of the class
LeastSquareImpl
.
42
LeastSquareImpl
leastSquareImpl1(PARAMS_NUM1);
in HWTEST_F()
48
LeastSquareImpl
leastSquareImpl2(PARAMS_NUM2);
in HWTEST_F()
54
LeastSquareImpl
leastSquareImpl3(PARAMS_NUM3);
in HWTEST_F()
61
LeastSquareImpl
leastSquareImpl4(PARAMS_NUM4);
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/gestures/
H
A
D
velocity_tracker.cpp
22
void CheckExtremePoint(const
LeastSquareImpl
& axis, double extremX, uint32_t valSize)
in CheckExtremePoint()
62
double GetLinearSlope(const
LeastSquareImpl
& axis)
in GetLinearSlope()
88
void CorrectMonotonicAxisVelocity(const
LeastSquareImpl
& axis, double& v, double extremX)
in CorrectMonotonicAxisVelocity()
107
double UpdateAxisVelocity(
LeastSquareImpl
& axis)
in UpdateAxisVelocity()
205
auto func = [](const
LeastSquareImpl
&axis, const char* str) {
in DumpVelocityPoints()
H
A
D
velocity_tracker.h
139
LeastSquareImpl
xAxis_ { LEAST_SQUARE_PARAM_NUM, POINT_NUMBER };
140
LeastSquareImpl
yAxis_ { LEAST_SQUARE_PARAM_NUM, POINT_NUMBER };
Completed in 2 milliseconds