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:GetColor4f
(Results
1 - 19
of
19
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H
A
D
brush_test.cpp
225
EXPECT_TRUE(std::abs(expectColor4f.redF_ - brush->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
226
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - brush->
GetColor4f
().greenF_) < 0.01);
in HWTEST_F()
227
EXPECT_TRUE(std::abs(expectColor4f.blueF_ - brush->
GetColor4f
().blueF_) < 0.01);
in HWTEST_F()
228
EXPECT_TRUE(std::abs(expectColor4f.alphaF_ - brush->
GetColor4f
().alphaF_) < 0.01);
in HWTEST_F()
246
EXPECT_TRUE(std::abs(expectColor4f.redF_ - brush->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
247
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - brush->
GetColor4f
().greenF_) < 0.01);
in HWTEST_F()
248
EXPECT_TRUE(std::abs(expectColor4f.blueF_ - brush->
GetColor4f
().blueF_) < 0.01);
in HWTEST_F()
249
EXPECT_TRUE(std::abs(expectColor4f.alphaF_ - brush->
GetColor4f
().alphaF_) < 0.01);
in HWTEST_F()
267
EXPECT_TRUE(std::abs(expectColor4f.redF_ - brush->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
268
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - brush->
GetColor4f
()
in HWTEST_F()
[all...]
H
A
D
pen_test.cpp
227
EXPECT_TRUE(std::abs(expectColor4f.redF_ - pen->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
228
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - pen->
GetColor4f
().greenF_) < 0.01);
in HWTEST_F()
229
EXPECT_TRUE(std::abs(expectColor4f.blueF_ - pen->
GetColor4f
().blueF_) < 0.01);
in HWTEST_F()
230
EXPECT_TRUE(std::abs(expectColor4f.alphaF_ - pen->
GetColor4f
().alphaF_) < 0.01);
in HWTEST_F()
248
EXPECT_TRUE(std::abs(expectColor4f.redF_ - pen->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
249
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - pen->
GetColor4f
().greenF_) < 0.01);
in HWTEST_F()
250
EXPECT_TRUE(std::abs(expectColor4f.blueF_ - pen->
GetColor4f
().blueF_) < 0.01);
in HWTEST_F()
251
EXPECT_TRUE(std::abs(expectColor4f.alphaF_ - pen->
GetColor4f
().alphaF_) < 0.01);
in HWTEST_F()
269
EXPECT_TRUE(std::abs(expectColor4f.redF_ - pen->
GetColor4f
().redF_) < 0.01);
in HWTEST_F()
270
EXPECT_TRUE(std::abs(expectColor4f.greenF_ - pen->
GetColor4f
()
in HWTEST_F()
[all...]
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/src/
H
A
D
filter_test.cpp
28
pen.SetColor(pen.
GetColor4f
(), ColorSpace::CreateSRGBLinear());
in TestDrawFilter()
40
brush.SetColor(brush.
GetColor4f
(), ColorSpace::CreateSRGBLinear());
in TestDrawFilter()
H
A
D
image_test.cpp
56
pen.SetColor(pen.
GetColor4f
(), c);
in TestDrawImage()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
H
A
D
brush.cpp
81
const Color4f& Brush::
GetColor4f
()
in GetColor4f()
function in OHOS::Rosen::Drawing::Brush
83
return color_.
GetColor4f
();
in GetColor4f()
H
A
D
pen.cpp
62
const Color4f& Pen::
GetColor4f
()
in GetColor4f()
function in OHOS::Rosen::Drawing::Pen
64
return brush_.
GetColor4f
();
in GetColor4f()
H
A
D
color.cpp
100
const Color4f& Color::
GetColor4f
()
in GetColor4f()
function in OHOS::Rosen::Drawing::Color
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H
A
D
paint.h
55
const Color4f&
GetColor4f
() { return color_.
GetColor4f
(); }
in GetColor4f()
function
H
A
D
brush.h
76
const Color4f&
GetColor4f
();
H
A
D
pen.h
87
const Color4f&
GetColor4f
();
H
A
D
color.h
134
const Color4f&
GetColor4f
();
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/color_fuzzer/
H
A
D
color_fuzzer.cpp
113
color.
GetColor4f
();
in ColorFuzzTest003()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/brush_fuzzer/
H
A
D
brush_fuzzer.cpp
43
brush.
GetColor4f
();
in BrushFuzzTestInner01()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/paint_fuzzer/
H
A
D
paint_fuzzer.cpp
69
paint.
GetColor4f
();
in PaintFuzzTest001()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/pen_fuzzer/
H
A
D
pen_fuzzer.cpp
41
pen.
GetColor4f
();
in PenFuzzTestInner01()
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/
H
A
D
drawing_sample_rs.cpp
209
pen.SetColor(pen.
GetColor4f
(), Drawing::ColorSpace::CreateSRGBLinear());
in TestDrawFilter()
221
brush.SetColor(brush.
GetColor4f
(), Drawing::ColorSpace::CreateSRGBLinear());
in TestDrawFilter()
276
pen.SetColor(pen.
GetColor4f
(), c);
in TestDrawImage()
H
A
D
drawing_sample_canvaskit0310.cpp
178
pen.SetColor(pen.
GetColor4f
(), c);
in TestDrawImage()
/foundation/arkui/ace_engine/adapter/ohos/entrance/window/
H
A
D
drag_window_ohos.cpp
101
brush.SetColor(brush.
GetColor4f
(), colorSpace);
in DrawDrawingImage()
/foundation/arkui/ace_engine/frameworks/core/components/image/
H
A
D
rosen_render_image.cpp
670
brush.SetColor(brush.
GetColor4f
(), colorSpace);
Completed in 12 milliseconds