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:IsCheckable
(Results
1 - 25
of
29
) sorted by relevance
1
2
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/
H
A
D
toggle_button_accessibility_property.cpp
21
bool ToggleButtonAccessibilityProperty::
IsCheckable
() const
in IsCheckable()
function in OHOS::Ace::NG::ToggleButtonAccessibilityProperty
H
A
D
toggle_button_accessibility_property.h
31
bool
IsCheckable
() const override;
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkbox/
H
A
D
checkbox_accessibility_property.h
31
bool
IsCheckable
() const override;
H
A
D
checkbox_accessibility_property.cpp
21
bool CheckBoxAccessibilityProperty::
IsCheckable
() const
in IsCheckable()
function in OHOS::Ace::NG::CheckBoxAccessibilityProperty
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/toggle/
H
A
D
switch_accessibility_property.cpp
24
bool SwitchAccessibilityProperty::
IsCheckable
() const
in IsCheckable()
function in OHOS::Ace::NG::SwitchAccessibilityProperty
H
A
D
switch_accessibility_property.h
31
bool
IsCheckable
() const override;
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H
A
D
radio_accessibility_property.h
31
bool
IsCheckable
() const override;
H
A
D
radio_accessibility_property.cpp
21
bool RadioAccessibilityProperty::
IsCheckable
() const
in IsCheckable()
function in OHOS::Ace::NG::RadioAccessibilityProperty
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkboxgroup/
H
A
D
checkboxgroup_accessibility_property.h
31
bool
IsCheckable
() const override;
H
A
D
checkboxgroup_accessibility_property.cpp
25
bool CheckBoxGroupAccessibilityProperty::
IsCheckable
() const
in IsCheckable()
function in OHOS::Ace::NG::CheckBoxGroupAccessibilityProperty
/foundation/arkui/ace_engine/adapter/ohos/osal/
H
A
D
js_third_provider_interaction_operation_utils.h
53
accessibilityElementInfo.SetCheckable(nativeInfo.
IsCheckable
());
in TransformAccessbilityElementInfo()
H
A
D
js_third_provider_interaction_operation.cpp
46
printStr.append(", checkable: ").append(info.
IsCheckable
() ? "true" : "false");
in LogAccessibilityElementInfo()
H
A
D
js_accessibility_manager.cpp
1208
nodeInfo.SetCheckable(accessibilityProperty->
IsCheckable
());
in UpdateUserAccessibilityElementInfo()
2213
DumpLog::GetInstance().AddDesc("checkable: ", BoolToString(nodeInfo.
IsCheckable
()));
in DumpAccessibilityPropertyNG()
3247
DumpLog::GetInstance().AddDesc("checkable: " + std::to_string(accessibilityInfo.
IsCheckable
()));
in DumpAccessibilityElementInfosTreeNG()
3287
"checkable: " + std::to_string(node->GetAccessibilityProperty<NG::AccessibilityProperty>()->
IsCheckable
()));
in DumpTreeNodeInfoNG()
6057
child->Put("checkable", accessibilityProperty->
IsCheckable
());
in CreateNodeInfoJson()
/foundation/arkui/ace_engine/test/unittest/core/accessibility/
H
A
D
js_third_provider_interaction_operation_utils_test.cpp
101
nativeInfo.SetCheckable(accessibilityElementInfo.
IsCheckable
());
in FillNativeAccessibilityElementInfo()
286
EXPECT_EQ(beforeInfo.
IsCheckable
(), afterInfo.
IsCheckable
());
in CheckTransformElementInfoResult()
H
A
D
native_interface_accessibility_test.cpp
156
NATIVE_ADD_ELEMENTINFO(SetCheckable, &afterInfo, beforeInfo.
IsCheckable
());
in FillNativeAccessibilityElementInfo()
328
EXPECT_EQ(beforeInfo.
IsCheckable
(), afterInfo.
IsCheckable
());
in CheckTransformElementInfoResult()
/foundation/arkui/ace_engine/frameworks/core/accessibility/
H
A
D
native_interface_accessibility_impl.h
156
bool
IsCheckable
() const
in IsCheckable()
function
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H
A
D
accessibility_property.h
78
virtual bool
IsCheckable
() const
in IsCheckable()
function in OHOS::OHOS::Ace::NG::AccessibilityProperty
H
A
D
accessibility_property.cpp
503
IsCheckable
() ||
in HasAction()
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/
H
A
D
accessibility_element_info.h
734
bool
IsCheckable
() const;
/foundation/arkui/ace_engine/test/unittest/core/pattern/toggle/
H
A
D
toggle_test_ng.cpp
1662
* @tc.desc: Test the
IsCheckable
and IsChecked properties of ToggleButton.
1674
EXPECT_TRUE(accessibility->
IsCheckable
());
in HWTEST_F()
1685
* @tc.desc: Test the
IsCheckable
and IsChecked properties of Switch.
1697
EXPECT_TRUE(accessibility->
IsCheckable
());
in HWTEST_F()
1710
* @tc.desc: Test the
IsCheckable
and IsChecked properties of Switch.
1722
EXPECT_TRUE(accessibility->
IsCheckable
());
in HWTEST_F()
/foundation/barrierfree/accessibility/frameworks/common/src/
H
A
D
accessibility_element_info.cpp
150
bool AccessibilityElementInfo::
IsCheckable
() const
in IsCheckable()
function in OHOS::Accessibility::AccessibilityElementInfo
/foundation/barrierfree/accessibility/frameworks/common/test/unittest/
H
A
D
accessibility_element_info_test.cpp
489
* @tc.desc: Test function SetCheckable,
IsCheckable
495
EXPECT_TRUE(elementInfo_->
IsCheckable
());
in HWTEST_F()
/foundation/barrierfree/accessibility/frameworks/common/test/mock/src/
H
A
D
mock_accessibility_element_info.cpp
489
* @tc.desc: Test function SetCheckable,
IsCheckable
495
EXPECT_TRUE(elementInfo_->
IsCheckable
());
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/component_test/core/
H
A
D
component_test_component_impl.cpp
536
return accessibilityProperty->
IsCheckable
();
in IsCheckableImpl()
/foundation/arkui/ace_engine/test/unittest/core/property/
H
A
D
accessibility_property_test_ng.cpp
209
EXPECT_FALSE(props.
IsCheckable
());
in HWTEST_F()
Completed in 39 milliseconds
1
2