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:dashWidth
(Results
1 - 12
of
12
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H
A
D
rs_border.cpp
73
void RSBorder::SetDashWidth(float
dashWidth
)
in SetDashWidth()
argument
76
dashWidth_.push_back(
dashWidth
);
in SetDashWidth()
121
// if
dashWidth
is not set, return -1 and the value will be calculated
in GetDashWidth()
172
void RSBorder::SetDashWidthFour(const Vector4f&
dashWidth
)
in SetDashWidthFour()
argument
174
if (
dashWidth
.x_ ==
dashWidth
.y_ &&
dashWidth
.x_ ==
dashWidth
.z_ &&
dashWidth
.x_ ==
dashWidth
in SetDashWidthFour()
259
float
dashWidth
= GetDashWidth(idx);
SetBorderEffect()
local
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H
A
D
rs_border.h
73
void SetDashWidth(float
dashWidth
);
85
void SetDashWidthFour(const Vector4f&
dashWidth
);
131
// Dash params
dashWidth
and dashGap
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H
A
D
view_abstract_model_ng.h
415
NG::BorderWidthProperty
dashWidth
;
variable
416
dashWidth
.leftDimen = left;
417
dashWidth
.rightDimen = right;
418
dashWidth
.topDimen = top;
419
dashWidth
.bottomDimen = bottom;
420
dashWidth
.multiValued = true;
421
ViewAbstract::SetDashWidth(
dashWidth
);
H
A
D
view_abstract.cpp
678
BorderWidthProperty
dashWidth
;
in SetDashWidth()
local
679
dashWidth
.SetBorderWidth(value);
in SetDashWidth()
681
ACE_UPDATE_RENDER_CONTEXT(DashWidth,
dashWidth
);
in SetDashWidth()
686
BorderWidthProperty
dashWidth
;
in SetDashWidth()
local
687
dashWidth
.SetBorderWidth(value);
in SetDashWidth()
689
ACE_UPDATE_NODE_RENDER_CONTEXT(DashWidth,
dashWidth
, frameNode);
in SetDashWidth()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H
A
D
rs_node.h
278
void SetBorderDashWidth(const Vector4f&
dashWidth
);
287
void SetOutlineDashWidth(const Vector4f&
dashWidth
);
H
A
D
rs_node.cpp
1315
void RSNode::SetBorderDashWidth(const Vector4f&
dashWidth
)
in SetBorderDashWidth()
argument
1318
RSModifierType::BORDER_DASH_WIDTH,
dashWidth
);
in SetBorderDashWidth()
1368
void RSNode::SetOutlineDashWidth(const Vector4f&
dashWidth
)
in SetOutlineDashWidth()
argument
1371
RSModifierType::OUTLINE_DASH_WIDTH,
dashWidth
);
in SetOutlineDashWidth()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/
H
A
D
rs_properties.h
216
void SetBorderDashWidth(const Vector4f&
dashWidth
);
227
void SetOutlineDashWidth(const Vector4f&
dashWidth
);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_search.cpp
770
auto
dashWidth
= object->GetProperty("
dashWidth
");
in JsBorder()
local
771
if (!
dashWidth
->IsUndefined()) {
in JsBorder()
772
JSViewAbstract::ParseDashWidth(
dashWidth
);
in JsBorder()
H
A
D
js_textfield.cpp
868
auto
dashWidth
= object->GetProperty("
dashWidth
");
in JsBorder()
local
869
if (!
dashWidth
->IsUndefined()) {
in JsBorder()
870
JSViewAbstract::ParseDashWidth(
dashWidth
);
in JsBorder()
H
A
D
js_view_abstract.cpp
3978
auto
dashWidth
= object->GetProperty("
dashWidth
");
in JsBorder()
local
3979
if (!
dashWidth
->IsUndefined()) {
in JsBorder()
3980
ParseDashWidth(
dashWidth
);
in JsBorder()
4076
CalcDimension
dashWidth
;
in ParseDashWidth()
local
4077
if (ParseLengthMetricsToDimension(args,
dashWidth
)) {
in ParseDashWidth()
4078
if (
dashWidth
.Unit() == DimensionUnit::PERCENT) {
in ParseDashWidth()
4079
dashWidth
.Reset();
in ParseDashWidth()
4081
ViewAbstractModel::GetInstance()->SetDashWidth(
dashWidth
);
in ParseDashWidth()
4089
dashWidth
in ParseDashWidth()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/
H
A
D
rs_properties.cpp
1075
void RSProperties::SetBorderDashWidth(const Vector4f&
dashWidth
)
in SetBorderDashWidth()
argument
1080
border_->SetDashWidthFour(
dashWidth
);
in SetBorderDashWidth()
1185
void RSProperties::SetOutlineDashWidth(const Vector4f&
dashWidth
)
in SetOutlineDashWidth()
argument
1190
outline_->SetDashWidthFour(
dashWidth
);
in SetOutlineDashWidth()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H
A
D
arkComponent.js
3540
if (!isUndefined(value === null || value === void 0 ? void 0 : value.
dashWidth
) && (value === null || value === void 0 ? void 0 : value.
dashWidth
) !== null) {
3541
if (isNumber(value.
dashWidth
) || isString(value.
dashWidth
) || isResource(value.
dashWidth
) || isObject(value.
dashWidth
) && isNumber(value.
dashWidth
.value)) {
3542
arkBorder.arkDashWidth.left = value.
dashWidth
;
3543
arkBorder.arkDashWidth.right = value.
dashWidth
;
3544
arkBorder.arkDashWidth.top = value.
dashWidth
;
[all...]
Completed in 79 milliseconds