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:Matrix3N
(Results
1 - 3
of
3
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/base/geometry/
H
A
D
matrix3.h
24
class
Matrix3N
;
48
Matrix3N
operator*(const
Matrix3N
& matrix) const;
90
class ACE_EXPORT
Matrix3N
{
class
95
explicit
Matrix3N
(int32_t columns);
96
~
Matrix3N
() = default;
105
inline
Matrix3N
& operator*(double num)
in operator *()
113
// Make sure that the rows of MatrixN3 is equal than the columns of
Matrix3N
.
198
Matrix3N
Transpose() const;
H
A
D
matrix3.cpp
64
Matrix3N
Matrix3::operator*(const
Matrix3N
& matrix) const
in operator *()
67
Matrix3N
Matrix3n { columns };
in operator *()
123
Matrix3N
::
Matrix3N
(int32_t columns) : columns_(columns)
in Matrix3N()
function in OHOS::Ace::Matrix3N
128
bool
Matrix3N
::SetEntry(int32_t row, int32_t col, double value)
in SetEntry()
137
Matrix3
Matrix3N
::operator*(const MatrixN3& matrix) const
in operator *()
155
MatrixN3
Matrix3N
::Transpose() const
in Transpose()
166
std::vector<double>
Matrix3N
::MapScalars(const std::vector<double>& src) const
in MapScalars()
182
bool
Matrix3N
[all...]
/foundation/arkui/ace_engine/test/unittest/base/
H
A
D
matrix3_test.cpp
53
* @tc.desc: Test the function SetEntry of the classes Matrix3,
Matrix3N
and MatrixN3.
63
Matrix3N
matrix3NObj1(COLUMN_NUM);
in HWTEST_F()
81
* @tc.steps3: Call the function SetEntry of the classes
Matrix3N
.
in HWTEST_F()
103
* @tc.desc: Test the function Transpose of the classes Matrix3,
Matrix3N
and MatrixN3.
113
Matrix3N
matrix3NObj1(COLUMN_NUM);
in HWTEST_F()
126
* @tc.steps3: Call the function Transpose of the classes
Matrix3N
.
in HWTEST_F()
136
Matrix3N
matrix3NObj2 = matrixN3Obj1.Transpose();
in HWTEST_F()
181
* @tc.desc: Test the function operator* of classes Matrix3 and
Matrix3N
.
193
Matrix3N
matrix3NObj1(COLUMN_NUM);
in HWTEST_F()
206
Matrix3N
matrix3NObj
in HWTEST_F()
[all...]
Completed in 2 milliseconds