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:dimRight
(Results
1 - 14
of
14
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H
A
D
swiper_helper.cpp
92
if (digitalParams->
dimRight
.has_value()) {
in SaveDigitIndicatorProperty()
93
indicatorProps->UpdateRight(digitalParams->
dimRight
.value());
in SaveDigitIndicatorProperty()
114
props->UpdateRight(digitalParams->
dimRight
.value_or(0.0_vp));
in SaveDigitIndicatorProperty()
133
if (params->
dimRight
.has_value()) {
in SaveDotIndicatorProperty()
134
indicatorProps->UpdateRight(params->
dimRight
.value());
in SaveDotIndicatorProperty()
385
jsonValue->Put("right", params->
dimRight
.value_or(0.0_vp).ToString().c_str());
in GetDotIndicatorStyle()
411
jsonValue->Put("right", params->
dimRight
.value_or(0.0_vp).ToString().c_str());
in GetDigitIndicatorStyle()
H
A
D
swiper_model.h
37
std::optional<Dimension>
dimRight
;
member
54
std::optional<Dimension>
dimRight
;
member
H
A
D
swiper_pattern.cpp
4361
isRtl ? props->UpdateLeft(dimValue) : props->UpdateRight(digitalParams->
dimRight
.value_or(0.0_vp));
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper_indicator/indicator_common/
H
A
D
indicator_pattern.cpp
154
if (swiperDigitalParameters->
dimRight
.has_value()) {
in SaveDigitIndicatorProperty()
155
layoutProperty->UpdateRight(swiperDigitalParameters->
dimRight
.value());
in SaveDigitIndicatorProperty()
189
if (swiperParameters->
dimRight
.has_value()) {
in SaveDotIndicatorProperty()
190
layoutProperty->UpdateRight(swiperParameters->
dimRight
.value());
in SaveDotIndicatorProperty()
/foundation/arkui/ace_engine/interfaces/native/node/
H
A
D
native_node_extented.cpp
339
indicator->
dimRight
= ArkUI_OptionalFloat { 0, 0.0f };
in OH_ArkUI_SwiperIndicator_Create()
391
indicator->
dimRight
.isSet = 1;
in OH_ArkUI_SwiperIndicator_SetEndPosition()
392
indicator->
dimRight
.value = value;
in OH_ArkUI_SwiperIndicator_SetEndPosition()
398
return indicator->
dimRight
.value;
in OH_ArkUI_SwiperIndicator_GetEndPosition()
H
A
D
node_extened.h
108
ArkUI_OptionalFloat
dimRight
;
member
H
A
D
style_modifier.cpp
7320
indicatorProp.
dimRight
= ArkUIOptionalFloat { indicator->
dimRight
.isSet, indicator->
dimRight
.value };
in SetSwiperIndicator()
7363
indicator->
dimRight
.value = props.
dimRight
.value;
in GetSwiperIndicator()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_indicator.cpp
188
swiperParameters.
dimRight
= ParseIndicatorDimension(rightValue);
in GetDotIndicatorInfo()
256
digitalParameters.
dimRight
= ParseIndicatorDimension(dotRightValue);
in GetDigitIndicatorInfo()
H
A
D
js_swiper.cpp
462
swiperParameters.
dimRight
= ParseIndicatorDimension(rightValue);
557
digitalParameters.
dimRight
= ParseIndicatorDimension(dotRightValue);
780
swiperParameters.
dimRight
= ParseIndicatorDimension(rightValue);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
swiper_model_impl.cpp
252
if (swiperParameters.
dimRight
.has_value()) {
in SetIndicatorStyle()
253
indicator->SetRight(swiperParameters.
dimRight
.value());
in SetIndicatorStyle()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H
A
D
cj_swiper_ffi.cpp
119
.
dimRight
= rightValue,
in FfiOHOSAceFrameworkSwiperSetIndicatorStyle()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H
A
D
node_swiper_modifier.cpp
227
swiperParameters.
dimRight
= ParseIndicatorDimension(rightValue);
in GetDotIndicatorInfo()
294
swiperParameters.
dimRight
= ParseIndicatorCommonDimension(indicator->
dimRight
, unit);
in GetDotIndicatorProps()
389
digitalParameters.
dimRight
= ParseIndicatorDimension(dotRightValue);
in GetDigitIndicatorInfo()
1011
ParseIndicatorAttribute(params->
dimRight
, hasValue, value);
in GetSwiperIndicator()
1012
props->
dimRight
= ArkUIOptionalFloat { hasValue, value };
in GetSwiperIndicator()
/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/
H
A
D
swiper_attr_test_ng.cpp
282
swiperParameters.
dimRight
= std::make_optional<Dimension>(10.f);
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H
A
D
arkoala_api.h
1281
ArkUIOptionalFloat
dimRight
;
member
Completed in 60 milliseconds