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:PostConcat
(Results
1 - 22
of
22
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/utils/
H
A
D
matrix.cpp
138
void Matrix::
PostConcat
(const Matrix& other)
in PostConcat()
function in OHOS::Rosen::Drawing::Matrix
140
matrixImplPtr->
PostConcat
(other);
in PostConcat()
143
void Matrix::
PostConcat
(const Matrix44& matrix44)
in PostConcat()
function in OHOS::Rosen::Drawing::Matrix
145
matrixImplPtr->
PostConcat
(matrix44);
in PostConcat()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/
H
A
D
color_matrix.h
63
void
PostConcat
(const ColorMatrix& m);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/
H
A
D
matrix.h
180
void
PostConcat
(const Matrix& other);
186
void
PostConcat
(const Matrix44& matrix44);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H
A
D
matrix_impl.h
63
virtual void
PostConcat
(const Matrix& other) = 0;
64
virtual void
PostConcat
(const Matrix44& other) = 0;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H
A
D
skia_matrix.h
64
void
PostConcat
(const Matrix& other) override;
65
void
PostConcat
(const Matrix44& other) override;
H
A
D
skia_matrix.cpp
147
void SkiaMatrix::
PostConcat
(const Matrix& other)
in PostConcat()
function in OHOS::Rosen::Drawing::SkiaMatrix
152
void SkiaMatrix::
PostConcat
(const Matrix44& other)
in PostConcat()
function in OHOS::Rosen::Drawing::SkiaMatrix
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/utils/matrix_fuzzer/
H
A
D
matrix_fuzzer.cpp
109
matrix.
PostConcat
(other);
in MatrixFuzzTest001()
110
matrix.
PostConcat
(matrix44);
in MatrixFuzzTest001()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/effect/colormatrix_fuzzer/
H
A
D
colormatrix_fuzzer.cpp
93
colorMatrix.
PostConcat
(colorMatrixOne);
in ColorMatrixFuzzTest003()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H
A
D
rs_kawase_blur.cpp
186
matrix.
PostConcat
(translateMatrix);
in GetShaderTransform()
230
inputMatrix.
PostConcat
(matrix);
in OutputOriginalImage()
379
inputMatrix.
PostConcat
(matrix);
in ApplyBlur()
H
A
D
rs_hps_blur.cpp
36
matrix.
PostConcat
(translateMatrix);
in GetShaderTransform()
H
A
D
rs_motion_blur_filter.cpp
98
inputMatrix.
PostConcat
(matrix);
in DrawMotionBlur()
233
inputMatrix.
PostConcat
(matrix);
in OutputOriginalImage()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/effect/
H
A
D
color_matrix_test.cpp
145
colorMatrix->
PostConcat
(*(colorMatrix1.get()));
in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/
H
A
D
color_matrix.cpp
100
void ColorMatrix::
PostConcat
(const ColorMatrix& m)
in PostConcat()
function in OHOS::Rosen::Drawing::ColorMatrix
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H
A
D
skia_matrix_test.cpp
222
* @tc.desc: Test
PostConcat
233
skiaMatrix.
PostConcat
(matrix);
in HWTEST_F()
239
* @tc.desc: Test
PostConcat
250
skiaMatrix.
PostConcat
(matrix44);
in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/
H
A
D
ge_kawase_blur_shader_filter.cpp
402
matrix.
PostConcat
(translateMatrix);
in GetShaderTransform()
443
inputMatrix.
PostConcat
(matrix);
in OutputOriginalImage()
476
inputMatrix.
PostConcat
(matrix);
in ScaleAndAddRandomColor()
H
A
D
ge_mesa_blur_shader_filter.cpp
318
inputMatrix.
PostConcat
(blurMatrix);
in DownSampling8X()
359
inputMatrix.
PostConcat
(blurMatrix);
in DownSamplingMoreX()
510
matrix.
PostConcat
(translateMatrix);
in BuildStretchMatrixFull()
526
matrix.
PostConcat
(translateMatrix);
in BuildStretchMatrix()
733
scaleMatrix.
PostConcat
(translateMatrix);
in ScaleAndAddRandomColor()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/
H
A
D
rs_obj_abs_geometry.cpp
80
matrix_.
PostConcat
(*contextMatrix_);
in UpdateMatrix()
109
matrix_.
PostConcat
(*contextMatrix_);
in UpdateByMatrixFromSelf()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H
A
D
rs_uni_render_util.cpp
1799
matrix.
PostConcat
(curProperty.GetBoundsGeometry()->GetMatrix());
in AccumulateMatrixAndAlpha()
1810
matrix.
PostConcat
(parentProperty.GetBoundsGeometry()->GetMatrix());
in AccumulateMatrixAndAlpha()
1954
relativeMat.
PostConcat
(invertAbsParentMatrix);
in GetMatrix()
H
A
D
rs_uni_render_visitor.cpp
1529
totalMatrix.
PostConcat
(opt.value());
in UpdateHwcNodeProperty()
2557
matrix.
PostConcat
(opt.value());
in UpdateHwcNodeRectInSkippedSubTree()
2573
matrix.
PostConcat
(parentGeoPtr->GetMatrix());
in UpdateHwcNodeRectInSkippedSubTree()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H
A
D
rs_paint_filter_canvas.cpp
1315
copiedEffectData->cachedMatrix_.
PostConcat
(inverse);
in CopyConfigurationToOffscreenCanvas()
H
A
D
rs_render_node.cpp
1620
matrix.
PostConcat
(GetRenderProperties().GetBoundsGeometry()->GetAbsMatrix());
in UpdateBufferDirtyRegion()
1910
selfMatrix.
PostConcat
(parentGeo->GetMatrix());
in GetAbsMatrixReverse()
1917
selfMatrix.
PostConcat
(rootGeo->GetAbsMatrix());
in GetAbsMatrixReverse()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H
A
D
rs_uni_render_util_test.cpp
2207
assertResult.
PostConcat
(invertAbsParentMatrix);
in HWTEST_F()
Completed in 31 milliseconds