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:childComponent
(Results
1 - 17
of
17
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
search_model_impl.cpp
79
auto
childComponent
= searchComponent->GetChild();
in SetPlaceholderColor()
local
80
if (!
childComponent
) {
in SetPlaceholderColor()
84
auto textFieldComponent = AceType::DynamicCast<TextFieldComponent>(
childComponent
);
in SetPlaceholderColor()
101
auto
childComponent
= searchComponent->GetChild();
in SetPlaceholderFont()
local
102
if (!
childComponent
) {
in SetPlaceholderFont()
106
auto textFieldComponent = AceType::DynamicCast<TextFieldComponent>(
childComponent
);
in SetPlaceholderFont()
135
auto
childComponent
= searchComponent->GetChild();
in SetTextFont()
local
136
if (!
childComponent
) {
in SetTextFont()
140
auto textFieldComponent = AceType::DynamicCast<TextFieldComponent>(
childComponent
);
in SetTextFont()
166
auto
childComponent
in SetTextAlign()
local
197
auto
childComponent
= searchComponent->GetChild();
SetHeight()
local
209
auto
childComponent
= searchComponent->GetChild();
SetBackBorder()
local
252
auto
childComponent
= component->GetChild();
SetOnCopy()
local
264
auto
childComponent
= component->GetChild();
SetOnCut()
local
276
auto
childComponent
= component->GetChild();
SetOnPaste()
local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_stepper_item.cpp
111
const auto&
childComponent
= node->GetRootComponent();
in AddStepperItem()
local
116
flexComponent_->InsertChild(slot,
childComponent
);
in AddStepperItem()
117
Component::MergeRSNode(
childComponent
, flexComponent_);
in AddStepperItem()
122
const auto&
childComponent
= node->GetRootComponent();
in RemoveStepperItem()
local
124
flexComponent_->RemoveChild(
childComponent
);
in RemoveStepperItem()
H
A
D
dom_list_item_group.cpp
137
const auto&
childComponent
= child->GetRootComponent();
in OnChildNodeAdded()
local
138
listItemGroupComponent_->AppendChild(
childComponent
);
in OnChildNodeAdded()
145
const auto&
childComponent
= child->GetRootComponent();
in OnChildNodeRemoved()
local
146
listItemGroupComponent_->RemoveChild(
childComponent
);
in OnChildNodeRemoved()
H
A
D
dom_list_item.cpp
240
const auto&
childComponent
= node->GetRootComponent();
in AddListItem()
local
245
flexComponent_->InsertChild(slot,
childComponent
);
in AddListItem()
250
const auto&
childComponent
= node->GetRootComponent();
in RemoveListItem()
local
252
flexComponent_->RemoveChild(
childComponent
);
in RemoveListItem()
/foundation/arkui/ace_engine/frameworks/core/components/shape/
H
A
D
shape_container_element.cpp
74
for (const auto&
childComponent
: children) {
in UpdateChildStyle()
75
UpdateChildStyle(selfComponent,
childComponent
);
in UpdateChildStyle()
/foundation/arkui/ace_engine/frameworks/core/components/flex/
H
A
D
flex_component_v2.cpp
83
for (const auto&
childComponent
: children) {
in AddFlexItemComponent()
84
multiComposedComponent->AddChild(AddFlexItemComponent(
childComponent
));
in AddFlexItemComponent()
/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H
A
D
element_proxy.cpp
597
auto
childComponent
= lazyForEachComponent_->GetChildByIndex(item.first);
variable
598
item.second->Update(
childComponent
, startIndex_ + item.first);
1103
const auto&
childComponent
= *itComponentStart;
variable
1104
auto composedComponent = AceType::DynamicCast<BaseComposedComponent>(
childComponent
);
1110
child->Update(
childComponent
, startIndex_ + count_);
1119
const auto&
childComponent
= *(--itComponentEnd);
variable
1120
auto composedComponent = AceType::DynamicCast<BaseComposedComponent>(
childComponent
);
1139
const auto&
childComponent
= *(itComponentStart++);
variable
1140
auto composedComponent = AceType::DynamicCast<BaseComposedComponent>(
childComponent
);
1146
child = ElementProxy::Create(host_,
childComponent
);
1163
const auto&
childComponent
= *(itComponentEnd++);
global()
variable
1200
const auto&
childComponent
= *itComponentStart;
UpdateForPartialUpdate()
local
1216
const auto&
childComponent
= *(--itComponentEnd);
UpdateForPartialUpdate()
local
1236
const auto&
childComponent
= *(itComponentStart++);
UpdateForPartialUpdate()
local
1260
const auto&
childComponent
= *(itComponentEnd++);
UpdateForPartialUpdate()
local
[all...]
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H
A
D
composed_element.cpp
178
auto
childComponent
= compose->GetChild();
in CanUpdate()
local
179
if (!
childComponent
) {
in CanUpdate()
182
return children_.front()->CanUpdate(
childComponent
);
in CanUpdate()
/foundation/arkui/ace_engine/frameworks/core/components/stepper/
H
A
D
stepper_component.cpp
136
for (auto&
childComponent
: children) {
in CollectItems()
137
auto itemComponent = StepperItemComponent::GetStepperItem(
childComponent
);
in CollectItems()
/foundation/arkui/ace_engine/frameworks/core/components/list/
H
A
D
list_component.cpp
154
for (const auto&
childComponent
: multiComposed->GetChildren()) {
in AppendChild()
155
AppendChild(
childComponent
);
in AppendChild()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H
A
D
view_stack_processor.cpp
461
auto
childComponent
= AceType::DynamicCast<ComposedComponent>(component)->GetChild();
in Pop()
local
462
SetZIndex(
childComponent
);
in Pop()
463
SetIsPercentSize(
childComponent
);
in Pop()
493
auto
childComponent
= AceType::DynamicCast<ComposedComponent>(component)->GetChild();
in GetNewComponent()
local
494
SetZIndex(
childComponent
);
in GetNewComponent()
495
SetIsPercentSize(
childComponent
);
in GetNewComponent()
753
auto
childComponent
= AceType::DynamicCast<ComposedComponent>(component)->GetChild();
in FinishReturnMain()
local
754
SetZIndex(
childComponent
);
in FinishReturnMain()
/foundation/arkui/ace_engine/frameworks/core/components/svg/
H
A
D
render_svg.cpp
66
for (const auto&
childComponent
: componentChildren) {
in AddSvgAnimations()
67
auto svgAnimateComponent = AceType::DynamicCast<SvgAnimate>(
childComponent
);
in AddSvgAnimations()
H
A
D
render_svg_base.cpp
651
for (const auto&
childComponent
: componentChildren) {
in PrepareAnimation()
652
auto svgAnimate = AceType::DynamicCast<SvgAnimate>(
childComponent
);
in PrepareAnimation()
/foundation/arkui/ace_engine/frameworks/core/components/camera/
H
A
D
camera_element.h
109
void UpdateChildInner(const RefPtr<Component>&
childComponent
);
H
A
D
camera_element.cpp
735
void CameraElement::UpdateChildInner(const RefPtr<Component>&
childComponent
)
in UpdateChildInner()
argument
738
UpdateChild(child,
childComponent
);
in UpdateChildInner()
/foundation/arkui/ace_engine/frameworks/core/components/video/
H
A
D
video_element.h
77
void UpdateChildInner(const RefPtr<Component>&
childComponent
);
H
A
D
video_element.cpp
1150
void VideoElement::UpdateChildInner(const RefPtr<Component>&
childComponent
)
in UpdateChildInner()
argument
1153
UpdateChild(child,
childComponent
);
in UpdateChildInner()
Completed in 17 milliseconds