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:maskValue
(Results
1 - 17
of
17
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_indicator.cpp
218
JSRef<JSVal>
maskValue
= obj->GetProperty(static_cast<int32_t>(ArkUIIndex::MASK_VALUE));
in SetDotIndicatorInfo()
local
222
if (
maskValue
->IsBoolean()) {
in SetDotIndicatorInfo()
223
auto mask =
maskValue
->ToBoolean();
in SetDotIndicatorInfo()
224
swiperParameters.
maskValue
= mask;
in SetDotIndicatorInfo()
H
A
D
js_swiper.cpp
492
JSRef<JSVal>
maskValue
= obj->GetProperty(static_cast<int32_t>(ArkUIIndex::MASK_VALUE));
496
if (
maskValue
->IsBoolean()) {
497
auto mask =
maskValue
->ToBoolean();
498
swiperParameters.
maskValue
= mask;
771
JSRef<JSVal>
maskValue
= obj->GetProperty("mask");
791
if (
maskValue
->IsBoolean()) {
792
auto mask =
maskValue
->ToBoolean();
793
swiperParameters.
maskValue
= mask;
H
A
D
js_view_abstract.cpp
919
JSRef<JSVal>
maskValue
= popupObj->GetProperty("mask");
in ParsePopupCommonParam()
local
920
if (
maskValue
->IsBoolean()) {
in ParsePopupCommonParam()
922
popupParam->SetBlockEvent(
maskValue
->ToBoolean());
in ParsePopupCommonParam()
925
if (
maskValue
->IsObject()) {
in ParsePopupCommonParam()
926
auto maskObj = JSRef<JSObject>::Cast(
maskValue
);
in ParsePopupCommonParam()
/foundation/arkui/ace_engine/interfaces/native/node/
H
A
D
native_node_extented.cpp
347
indicator->
maskValue
= ArkUI_OptionalInt { 0, 0 };
in OH_ArkUI_SwiperIndicator_Create()
469
indicator->
maskValue
.isSet = 1;
in OH_ArkUI_SwiperIndicator_SetMask()
470
indicator->
maskValue
.value = mask;
in OH_ArkUI_SwiperIndicator_SetMask()
476
return indicator->
maskValue
.value;
in OH_ArkUI_SwiperIndicator_GetMask()
H
A
D
node_extened.h
114
ArkUI_OptionalInt
maskValue
;
member
H
A
D
style_modifier.cpp
7330
indicatorProp.
maskValue
= ArkUIOptionalInt { indicator->
maskValue
.isSet, indicator->
maskValue
.value };
in SetSwiperIndicator()
7370
indicator->
maskValue
.value = props.
maskValue
.value;
in GetSwiperIndicator()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H
A
D
node_swiper_modifier.cpp
211
auto
maskValue
= GetInfoFromVectorByIndex(dotIndicatorInfo, DOT_INDICATOR_MASK);
in GetDotIndicatorInfo()
local
247
if (
maskValue
!= "2") {
in GetDotIndicatorInfo()
248
swiperParameters.
maskValue
= (
maskValue
== "1" ? true : false);
in GetDotIndicatorInfo()
315
swiperParameters.
maskValue
= indicator->
maskValue
.value == 1 ? true : false;
in GetDotIndicatorProps()
1025
props->
maskValue
= ArkUIOptionalInt { 1, params->
maskValue
.value_or(0) };
in GetSwiperIndicator()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
swiper_model_impl.cpp
264
if (swiperParameters.
maskValue
.has_value()) {
in SetIndicatorStyle()
265
indicator->SetIndicatorMask(swiperParameters.
maskValue
.value());
in SetIndicatorStyle()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper_indicator/indicator_common/
H
A
D
indicator_pattern.cpp
110
swiperParameters_->
maskValue
= false;
in GetSwiperParameters()
227
paintProperty->UpdateIndicatorMask(swiperParameters->
maskValue
.value_or(false));
in UpdatePaintProperty()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H
A
D
cj_swiper_ffi.cpp
121
.
maskValue
= value.mask,
in FfiOHOSAceFrameworkSwiperSetIndicatorStyle()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H
A
D
swiper_model.h
45
std::optional<bool>
maskValue
;
member
H
A
D
swiper_helper.cpp
394
jsonValue->Put("mask", params->
maskValue
.value_or(false) ? "true" : "false");
in GetDotIndicatorStyle()
H
A
D
swiper_pattern.cpp
4164
swiperParameters_->
maskValue
= false;
4331
paintProperty->UpdateIndicatorMask(swiperParameters->
maskValue
.value_or(false));
/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/
H
A
D
swiper_attr_test_ng.cpp
288
swiperParameters.
maskValue
= std::make_optional<bool>(true);
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H
A
D
jsEnumStyle.js
1882
this.
maskValue
= value;
H
A
D
arkComponent.js
16092
this.
maskValue
= undefined;
16107
this.
maskValue
=== another.
maskValue
&&
28265
mask = this.value.
maskValue
;
28308
!isBaseOrResourceEqual(this.stageValue.
maskValue
, this.value.
maskValue
) ||
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H
A
D
arkoala_api.h
1287
ArkUIOptionalInt
maskValue
;
member
Completed in 135 milliseconds