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:qrcodeTheme
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/declaration/qrcode/
H
A
D
qrcode_declaration.cpp
34
auto
qrcodeTheme
= GetTheme<QrcodeTheme>();
in InitializeStyle()
local
35
if (!
qrcodeTheme
) {
in InitializeStyle()
38
SetQrcodeColor(
qrcodeTheme
->GetQrcodeColor());
in InitializeStyle()
39
SetBackgroundColor(
qrcodeTheme
->GetBackgroundColor());
in InitializeStyle()
40
SetQrcodeType(
qrcodeTheme
->GetQrcodeType());
in InitializeStyle()
41
SetQrcodeWidth(
qrcodeTheme
->GetQrcodeWidth());
in InitializeStyle()
42
SetQrcodeHeight(
qrcodeTheme
->GetQrcodeHeight());
in InitializeStyle()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_qrcode.cpp
68
RefPtr<QrcodeTheme>
qrcodeTheme
= GetTheme<QrcodeTheme>();
in SetQRCodeColor()
local
69
CHECK_NULL_VOID(
qrcodeTheme
);
in SetQRCodeColor()
70
qrcodeColor =
qrcodeTheme
->GetQrcodeColor();
in SetQRCodeColor()
82
RefPtr<QrcodeTheme>
qrcodeTheme
= GetTheme<QrcodeTheme>();
in SetBackgroundColor()
local
83
CHECK_NULL_VOID(
qrcodeTheme
);
in SetBackgroundColor()
84
backgroundColor =
qrcodeTheme
->GetBackgroundColor();
in SetBackgroundColor()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/qrcode/
H
A
D
qrcode_napi.cpp
84
RefPtr<QrcodeTheme>
qrcodeTheme
= GetTheme<QrcodeTheme>();
in JsColor()
local
85
CHECK_NULL_RETURN(
qrcodeTheme
, CommonNapiUtils::CreateNull(env));
in JsColor()
86
qrcodeColor =
qrcodeTheme
->GetQrcodeColor();
in JsColor()
102
RefPtr<QrcodeTheme>
qrcodeTheme
= GetTheme<QrcodeTheme>();
in JsBackgroundColor()
local
103
CHECK_NULL_RETURN(
qrcodeTheme
, CommonNapiUtils::CreateNull(env));
in JsBackgroundColor()
104
backgroundColor =
qrcodeTheme
->GetBackgroundColor();
in JsBackgroundColor()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H
A
D
qrcode_modifier.cpp
35
RefPtr<QrcodeTheme>
qrcodeTheme
= GetTheme<QrcodeTheme>();
in ResetQRColor()
local
36
CHECK_NULL_VOID(
qrcodeTheme
);
in ResetQRColor()
37
Color qrcodeColor =
qrcodeTheme
->GetQrcodeColor();
in ResetQRColor()
/foundation/arkui/ace_engine/test/unittest/core/pattern/qrcode/
H
A
D
qrcode_test_ng.cpp
81
auto
qrcodeTheme
= QrcodeTheme::Builder().Build(themeConstants);
in SetUpTestSuite()
local
82
EXPECT_CALL(*themeManager, GetTheme(_)).WillRepeatedly(Return(
qrcodeTheme
));
in SetUpTestSuite()
Completed in 4 milliseconds