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:layoutFunc
(Results
1 - 6
of
6
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/custom/
H
A
D
custom_measure_layout_node.h
53
void SetLayoutFunction(std::function<void(LayoutWrapper* layoutWrapper)>&&
layoutFunc
)
in SetLayoutFunction()
argument
55
layoutFunc_ = std::move(
layoutFunc
);
in SetLayoutFunction()
/foundation/arkui/ace_engine/test/unittest/core/base/
H
A
D
view_partial_update_model_test_ng.cpp
145
* @tc.steps: step1. call the CreateNode function and set info.
layoutFunc
.
in HWTEST_F()
146
* @tc.expected: step1. info.
layoutFunc
is not null and return expect value.
in HWTEST_F()
163
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
168
EXPECT_NE(info.
layoutFunc
, nullptr);
in HWTEST_F()
202
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
244
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
333
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
375
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
418
.
layoutFunc
= std::move(layoutFuncation),
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H
A
D
view_partial_update_model_ng.cpp
46
} else if (info.
layoutFunc
&& customMeasureLayoutNode) {
in CreateNode()
47
customMeasureLayoutNode->SetLayoutFunction(std::move(info.
layoutFunc
));
in CreateNode()
H
A
D
view_partial_update_model.h
43
std::function<void(NG::LayoutWrapper*)>
layoutFunc
;
member
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_view_measure_layout.cpp
279
JSRef<JSFunc>
layoutFunc
= JSRef<JSFunc>::New<FunctionCallback>(ViewMeasureLayout::JSLayout);
in GenChildArray()
local
286
info->SetPropertyObject("layout",
layoutFunc
);
in GenChildArray()
354
JSRef<JSFunc>
layoutFunc
= JSRef<JSFunc>::New<FunctionCallback>(ViewMeasureLayout::JSPlaceChildren);
in GenChildArray()
local
364
info->SetPropertyObject("layout",
layoutFunc
);
in GenChildArray()
H
A
D
js_view.cpp
722
auto
layoutFunc
= [weak = AceType::WeakClaim(this)](NG::LayoutWrapper* layoutWrapper) -> void {
in CreateViewNode()
local
729
info.
layoutFunc
= std::move(
layoutFunc
);
in CreateViewNode()
Completed in 9 milliseconds