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:testFuncVec
(Results
1 - 13
of
13
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/src/
H
A
D
path_effect_test.cpp
46
std::vector<TestFunc>
testFuncVec
;
in PathEffectTestCase()
local
47
testFuncVec
.push_back(TestDrawDashPathEffect);
in PathEffectTestCase()
48
return
testFuncVec
;
in PathEffectTestCase()
H
A
D
shader_test.cpp
41
std::vector<TestFunc>
testFuncVec
;
in ShaderTestCase()
local
42
testFuncVec
.push_back(TestDrawShader);
in ShaderTestCase()
43
return
testFuncVec
;
in ShaderTestCase()
H
A
D
filter_test.cpp
54
std::vector<TestFunc>
testFuncVec
;
in FilterTestCase()
local
55
testFuncVec
.push_back(TestDrawFilter);
in FilterTestCase()
56
return
testFuncVec
;
in FilterTestCase()
H
A
D
bitmap_test.cpp
50
std::vector<TestFunc>
testFuncVec
;
in BitmapTestCase()
local
51
testFuncVec
.push_back(TestDrawBitmap);
in BitmapTestCase()
52
return
testFuncVec
;
in BitmapTestCase()
H
A
D
camera_test.cpp
54
std::vector<TestFunc>
testFuncVec
;
in CameraTestCase()
local
55
testFuncVec
.push_back(TestCamera);
in CameraTestCase()
56
return
testFuncVec
;
in CameraTestCase()
H
A
D
image_test.cpp
89
std::vector<TestFunc>
testFuncVec
;
in ImageTestCase()
local
90
testFuncVec
.push_back(TestDrawImage);
in ImageTestCase()
91
testFuncVec
.push_back(TestDrawImageRect);
in ImageTestCase()
92
return
testFuncVec
;
in ImageTestCase()
H
A
D
matrix_test.cpp
75
std::vector<TestFunc>
testFuncVec
;
in MatrixTestCase()
local
76
testFuncVec
.push_back(TestMatrix);
in MatrixTestCase()
77
return
testFuncVec
;
in MatrixTestCase()
H
A
D
path_test.cpp
72
std::vector<TestFunc>
testFuncVec
;
in PathTestCase()
local
73
testFuncVec
.push_back(TestDrawStar);
in PathTestCase()
74
testFuncVec
.push_back(TestMoveTo);
in PathTestCase()
75
testFuncVec
.push_back(TestLineTo);
in PathTestCase()
76
testFuncVec
.push_back(TestArcTo);
in PathTestCase()
77
testFuncVec
.push_back(TestCubicTo);
in PathTestCase()
78
testFuncVec
.push_back(TestQuadTo);
in PathTestCase()
80
testFuncVec
.push_back(TestAddRect);
in PathTestCase()
81
testFuncVec
.push_back(TestAddOval);
in PathTestCase()
82
testFuncVec
in PathTestCase()
[all...]
H
A
D
pen_test.cpp
336
std::vector<TestFunc>
testFuncVec
;
in PenTestCase()
local
337
testFuncVec
.push_back(TestPenColor);
in PenTestCase()
338
testFuncVec
.push_back(TestPenAlpha);
in PenTestCase()
339
testFuncVec
.push_back(TestPenWidth);
in PenTestCase()
340
testFuncVec
.push_back(TestPenMiterLimit);
in PenTestCase()
341
testFuncVec
.push_back(TestPenCapStyle);
in PenTestCase()
342
testFuncVec
.push_back(TestPenJoinStyle);
in PenTestCase()
343
testFuncVec
.push_back(TestPenBlendMode);
in PenTestCase()
344
testFuncVec
.push_back(TestPenAntiAlias);
in PenTestCase()
345
testFuncVec
in PenTestCase()
[all...]
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/include/
H
A
D
shadow_test.h
82
std::vector<TestFunc>
testFuncVec
;
in ShadowTestCase()
local
83
testFuncVec
.push_back(TestDrawShadow);
in ShadowTestCase()
84
testFuncVec
.push_back(TestDrawShadowStyle);
in ShadowTestCase()
85
return
testFuncVec
;
in ShadowTestCase()
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/
H
A
D
drawing_sample_rs.cpp
71
std::vector<TestFunc>
testFuncVec
;
530
testFuncVec
[index](canvas, width, height);
in DoDraw()
591
testFuncVec
.push_back(TestDrawPathPro);
in main()
592
testFuncVec
.push_back(TestCamera);
in main()
593
testFuncVec
.push_back(TestDrawBase);
in main()
594
testFuncVec
.push_back(TestDrawPath);
in main()
595
testFuncVec
.push_back(TestDrawPathEffect);
in main()
596
testFuncVec
.push_back(TestDrawBitmap);
in main()
597
testFuncVec
.push_back(TestDrawImage);
in main()
598
testFuncVec
in main()
[all...]
H
A
D
drawing_c_sample.cpp
54
static std::vector<TestFunc>
testFuncVec
;
variable
138
testFuncVec
[index](cCanvas, width, height);
in DoDraw()
200
testFuncVec
.push_back(TestDrawPathPro);
in main()
204
for (size_t i = 0; i <
testFuncVec
.size(); i++) {
in main()
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/test/
H
A
D
opengl_wrapper_native_test.cpp
52
static std::vector<TestFunc>
testFuncVec
;
variable
291
testFuncVec
[index](WIDTH, HEIGHT);
in DrawSurface()
311
testFuncVec
.push_back(TestDraw);
in main()
315
for (size_t i = 0; i <
testFuncVec
.size(); i++) {
in main()
Completed in 8 milliseconds