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:textComponent_
(Results
1 - 18
of
18
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/coverage/
H
A
D
coverage_component.h
42
textComponent_
->SetData(val);
in SetTextVal()
47
return
textComponent_
->GetData();
in GetTextVal()
57
textComponent_
->SetHasLeft(true);
in SetX()
58
textComponent_
->SetLeft(x);
in SetX()
59
textComponent_
->SetPositionType(PositionType::PTRELATIVE);
in SetX()
64
textComponent_
->SetHasTop(true);
in SetY()
65
textComponent_
->SetTop(y);
in SetY()
66
textComponent_
->SetPositionType(PositionType::PTRELATIVE);
in SetY()
71
return
textComponent_
->GetLeft();
in GetX()
81
return
textComponent_
in GetY()
97
RefPtr<TextComponent>
textComponent_
;
global()
member in OHOS::Ace::CoverageComponent
[all...]
H
A
D
coverage_component.cpp
32
textComponent_
= AceType::MakeRefPtr<OHOS::Ace::TextComponentV2>("");
in CoverageComponent()
42
auto textStyle =
textComponent_
->GetTextStyle();
in Initialization()
44
textComponent_
->SetTextStyle(textStyle);
in Initialization()
45
textBoxComponent_->SetChild(
textComponent_
);
in Initialization()
48
Component::MergeRSNode(alignComponent_,
textComponent_
);
in Initialization()
/foundation/arkui/ace_engine/frameworks/core/components/picker/
H
A
D
picker_option_component.cpp
30
textComponent_
= AceType::MakeRefPtr<TextComponent>("");
in PickerOptionComponent()
56
textComponent_
->SetData(text_);
in Initialize()
57
textComponent_
->SetFocusColor(style.GetTextColor());
in Initialize()
58
textComponent_
->SetTextStyle(style);
in Initialize()
59
textComponent_
->SetTextDirection(GetTextDirection());
in Initialize()
69
boxComponent_->SetChild(
textComponent_
);
in Initialize()
H
A
D
render_picker_option.cpp
86
textComponent_
= option->GetTextComponent();
in Update()
112
if (!
textComponent_
) {
in UpdateValue()
117
if (
textComponent_
->GetData() == text_) {
in UpdateValue()
122
textComponent_
->SetData(text_);
in UpdateValue()
127
renderText_->Update(
textComponent_
);
in UpdateValue()
303
if (renderText_ &&
textComponent_
) {
in UpdateTextFocus()
305
textComponent_
->SetTextStyle(focusStyle_);
in UpdateTextFocus()
307
textComponent_
->SetTextStyle(selectedStyle_);
in UpdateTextFocus()
309
renderText_->Update(
textComponent_
);
in UpdateTextFocus()
352
if (renderText_ && renderBox_ &&
textComponent_
in UpdateFocus()
[all...]
H
A
D
picker_option_component.h
85
return
textComponent_
;
in GetTextComponent()
151
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::PickerOptionComponent
H
A
D
render_picker_option.h
110
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::RenderPickerOption
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H
A
D
dom_svg_text.cpp
24
return
textComponent_
;
in GetSpecializedComponent()
29
textComponent_
->InsertChild(slot, child->GetSpecializedComponent());
in OnChildNodeAdded()
54
if (!
textComponent_
) {
in PrepareSpecializedComponent()
55
textComponent_
= AceType::MakeRefPtr<SvgTextComponent>();
in PrepareSpecializedComponent()
59
textComponent_
->SetDeclaration(declaration);
in PrepareSpecializedComponent()
H
A
D
dom_svg_tspan.cpp
26
if (!
textComponent_
) {
in PrepareSpecializedComponent()
27
textComponent_
= AceType::MakeRefPtr<SvgTspanComponent>();
in PrepareSpecializedComponent()
H
A
D
dom_svg_text.h
38
RefPtr<SvgTextComponent>
textComponent_
;
member in OHOS::Ace::Framework::DOMSvgText
/foundation/arkui/ace_engine/frameworks/core/components/texttimer/
H
A
D
render_texttimer.cpp
24
textComponent_
= AceType::MakeRefPtr<TextComponent>(std::string(""));
in RenderTextTimer()
89
textComponent_
->SetTextStyle(timerComponent->GetTextStyle());
in Update()
115
if (!
textComponent_
) {
in UpdateValue()
120
if (
textComponent_
->GetData() == timerText) {
in UpdateValue()
124
textComponent_
->SetData(timerText);
in UpdateValue()
130
renderText_->Update(
textComponent_
);
in UpdateValue()
H
A
D
render_texttimer.h
52
if (
textComponent_
) {
in GetTextStyle()
53
return
textComponent_
->GetTextStyle();
in GetTextStyle()
71
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::RenderTextTimer
/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/
H
A
D
render_popup_list_item.cpp
38
textComponent_
= AceType::DynamicCast<TextComponent>(boxComponent_->GetChild());
in Update()
39
if (!
textComponent_
) {
in Update()
57
renderText_->Update(
textComponent_
);
in Update()
H
A
D
render_indexer_item.cpp
36
textComponent_
= itemComponent->GetTextComponent();
in Update()
205
if (!text || !
textComponent_
) {
in UpdateItemStyle()
216
textComponent_
->SetTextStyle(activeStyle_);
in UpdateItemStyle()
219
textComponent_
->SetTextStyle(normalStyle_);
in UpdateItemStyle()
222
text->Update(
textComponent_
);
in UpdateItemStyle()
H
A
D
render_popup_list_item.h
44
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::V2::RenderPopupListItem
H
A
D
render_indexer_item.h
132
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::V2::RenderIndexerItem
/foundation/arkui/ace_engine/frameworks/core/components/indexer/
H
A
D
render_indexer_item.cpp
39
textComponent_
= itemComponent->GetTextComponent();
in Update()
254
if (!text || !
textComponent_
) {
in UpdateItemStyle()
276
textComponent_
->SetTextStyle(activeStyle_);
in UpdateItemStyle()
279
textComponent_
->SetTextStyle(normalStyle_);
in UpdateItemStyle()
281
text->Update(
textComponent_
);
in UpdateItemStyle()
H
A
D
render_indexer_item.h
137
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::RenderIndexerItem
/foundation/arkui/ace_engine/frameworks/core/components/counter/
H
A
D
counter_component.h
74
RefPtr<TextComponent>
textComponent_
;
member in OHOS::Ace::CounterComponent
Completed in 6 milliseconds