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:LayoutMode
(Results
1 - 17
of
17
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H
A
D
tab_content_model.h
38
enum class
LayoutMode
{
class
46
LayoutMode
layoutMode =
LayoutMode
::VERTICAL;
140
virtual void SetLayoutMode(
LayoutMode
layoutMode) = 0;
H
A
D
tab_content_node.h
64
std::string ConvertLayoutModeToString(
LayoutMode
layoutMode) const;
H
A
D
tab_content_node.cpp
202
std::string TabContentNode::ConvertLayoutModeToString(
LayoutMode
layoutMode) const
in ConvertLayoutModeToString()
204
if (layoutMode ==
LayoutMode
::VERTICAL) {
in ConvertLayoutModeToString()
205
return "
LayoutMode
.VERTICAL";
in ConvertLayoutModeToString()
206
} else if (layoutMode ==
LayoutMode
::HORIZONTAL) {
in ConvertLayoutModeToString()
207
return "
LayoutMode
.HORIZONTAL";
in ConvertLayoutModeToString()
209
return "
LayoutMode
.AUTO";
in ConvertLayoutModeToString()
H
A
D
tab_content_model_ng.h
49
void SetLayoutMode(
LayoutMode
layoutMode) override;
H
A
D
tab_content_pattern.h
275
void SetLayoutMode(
LayoutMode
layoutMode)
in SetLayoutMode()
H
A
D
tab_content_model_ng.cpp
194
if (bottomTabBarStyle.layoutMode ==
LayoutMode
::HORIZONTAL) {
in AddTabBarItem()
379
if (tabBarStyle == TabBarStyle::BOTTOMTABBATSTYLE && bottomTabBarStyle.layoutMode ==
LayoutMode
::HORIZONTAL) {
in AddTabBarItem()
555
void TabContentModelNG::SetLayoutMode(
LayoutMode
layoutMode)
in SetLayoutMode()
H
A
D
tab_bar_layout_algorithm.cpp
82
// Vertical tab bar may apply
LayoutMode
.AUTO
in Measure()
734
bottomTabBarStyle.layoutMode !=
LayoutMode
::AUTO) {
in ApplyLayoutMode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/waterflow/
H
A
D
water_flow_pattern.h
46
using
LayoutMode
= WaterFlowLayoutMode;
47
void SetLayoutMode(
LayoutMode
mode);
48
LayoutMode
GetLayoutMode() const
in GetLayoutMode()
108
* @brief
LayoutMode
::SLIDING_WINDOW doesn't support scrollTo and animateTo
112
* @brief
LayoutMode
::SLIDING_WINDOW doesn't support animateTo
231
RefPtr<WaterFlowLayoutInfoBase> layoutInfo_ = WaterFlowLayoutInfoBase::Create(
LayoutMode
::TOP_DOWN);
H
A
D
water_flow_pattern.cpp
67
if (layoutInfo_->Mode() ==
LayoutMode
::TOP_DOWN && GreatNotEqual(delta, 0.0f)) {
in UpdateCurrentOffset()
113
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW) {
in UpdateScrollBarOffset()
165
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW) {
in CreateLayoutAlgorithm()
210
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW) {
in OnModifyDone()
499
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW && keepContentPosition_) {
in OnSectionChanged()
664
void WaterFlowPattern::SetLayoutMode(
LayoutMode
mode)
in SetLayoutMode()
683
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW && keepContentPosition_) {
in NotifyDataChange()
774
if (layoutInfo_->Mode() ==
LayoutMode
::SLIDING_WINDOW) {
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_water_flow.cpp
189
using
LayoutMode
= NG::WaterFlowLayoutMode;
in Create()
190
auto mode =
LayoutMode
::TOP_DOWN;
in Create()
193
mode = static_cast<
LayoutMode
>(jsMode->ToNumber<int32_t>());
in Create()
194
if (mode <
LayoutMode
::TOP_DOWN || mode >
LayoutMode
::SLIDING_WINDOW) {
in Create()
195
mode =
LayoutMode
::TOP_DOWN;
in Create()
H
A
D
js_tab_content.cpp
592
TabContentModel::GetInstance()->SetLayoutMode(
LayoutMode
::VERTICAL);
in SetLayoutMode()
594
TabContentModel::GetInstance()->SetLayoutMode(static_cast<
LayoutMode
>(layoutMode));
in SetLayoutMode()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
tab_content_model_impl.h
40
void SetLayoutMode(
LayoutMode
layoutMode) override {}
/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/
H
A
D
tabs_test_ng.cpp
314
EXPECT_EQ(tabContentFrameNode->ConvertLayoutModeToString(
LayoutMode
::VERTICAL), "
LayoutMode
.VERTICAL");
in HWTEST_F()
315
EXPECT_EQ(tabContentFrameNode->ConvertLayoutModeToString(
LayoutMode
::HORIZONTAL), "
LayoutMode
.HORIZONTAL");
in HWTEST_F()
316
EXPECT_EQ(tabContentFrameNode->ConvertLayoutModeToString(
LayoutMode
::AUTO), "
LayoutMode
.AUTO");
in HWTEST_F()
H
A
D
tabs_sub_tab_bar_style_test_ng.cpp
1579
* @tc.steps: step2. set the frameNode and the
LayoutMode
to tab content.
in HWTEST_F()
1580
* @tc.expected: set the frameNode and the
LayoutMode
to tab content successfully.
in HWTEST_F()
1582
LayoutMode
layoutMode =
LayoutMode
::AUTO;
in HWTEST_F()
1614
* @tc.steps: step1. create a tab and set
LayoutMode
.
in HWTEST_F()
1615
* @tc.expected: create a tab and set
LayoutMode
successfully.
in HWTEST_F()
1617
LayoutMode
layoutMode =
LayoutMode
::AUTO;
in HWTEST_F()
H
A
D
tabs_attr_test_ng.cpp
938
LayoutMode
layoutMode =
LayoutMode
::AUTO;
in HWTEST_F()
1403
* @tc.desc: test method with isRTL && useLocalizedPadding_ and
LayoutMode
::HORIZONTAL in BOTTOMTABBATSTYLE
1412
tabContentModel.SetLayoutMode(
LayoutMode
::HORIZONTAL);
in HWTEST_F()
H
A
D
tab_bar_layout_test_ng.cpp
366
bottomTabBarStyle.layoutMode =
LayoutMode
::VERTICAL;
in HWTEST_F()
370
bottomTabBarStyle.layoutMode =
LayoutMode
::AUTO;
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H
A
D
jsEnumStyle.js
806
var
LayoutMode
;
variable
807
(function (
LayoutMode
) {
808
LayoutMode
[
LayoutMode
["AUTO"] = 0] = "AUTO";
809
LayoutMode
[
LayoutMode
["VERTICAL"] = 1] = "VERTICAL";
810
LayoutMode
[
LayoutMode
["HORIZONTAL"] = 2] = "HORIZONTAL";
811
})(
LayoutMode
|| (
LayoutMode
[all...]
Completed in 20 milliseconds