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:textIndent
(Results
1 - 19
of
19
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/measure/
H
A
D
cj_measure_ffi.cpp
103
if (context.
textIndent
.hasValue) {
in FromCJCreateMeasureContext()
104
measureContext.
textIndent
= Dimension(
in FromCJCreateMeasureContext()
105
context.
textIndent
.value.value,
in FromCJCreateMeasureContext()
106
DimensionUnit(context.
textIndent
.value.unitType)
in FromCJCreateMeasureContext()
H
A
D
cj_measure_ffi.h
38
NativeOptionLength
textIndent
;
member
/foundation/arkui/ace_engine/frameworks/base/utils/
H
A
D
measure_util.h
38
std::optional<Dimension>
textIndent
= std::nullopt;
member
/foundation/arkui/ace_engine/interfaces/napi/kits/measure/
H
A
D
js_measure.cpp
275
napi_get_named_property(env, argv, "
textIndent
", &contextParamMap["textIndentNApi"]);
in SetMeasureTextNapiProperty()
298
std::optional<Dimension>
textIndent
=
in SetContextProperty()
local
333
context.
textIndent
=
textIndent
;
in SetContextProperty()
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_drag/
H
A
D
text_drag_test_ng.h
47
std::optional<Dimension>
textIndent
= std::nullopt;
member
H
A
D
text_drag_test_ng.cpp
131
if (textProperty.
textIndent
.has_value()) {
in SetTextProperty()
132
textModel.SetTextIndent(textProperty.
textIndent
.value());
in SetTextProperty()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/
H
A
D
span_object.h
57
std::optional<Dimension>
textIndent
;
member
62
textOverflow == other.textOverflow &&
textIndent
== other.
textIndent
;
in Equal()
H
A
D
span_object.cpp
707
if (paragraphStyle_.
textIndent
.has_value()) {
in AddParagraphStyle()
708
spanItem->textLineStyle->UpdateTextIndent(paragraphStyle_.
textIndent
.value());
in AddParagraphStyle()
H
A
D
span_string.cpp
1133
paragraphStyle.
textIndent
= spanItem->textLineStyle->GetTextIndent();
in ToParagraphStyleSpan()
/foundation/arkui/ace_engine/test/unittest/adapter/ohos/capability/
H
A
D
html_convert_test.cpp
108
// defalut
textIndent
23
in GetDefaultParagraphStyle()
109
spanParagraphStyle.
textIndent
= Dimension(23.0_vp);
in GetDefaultParagraphStyle()
342
// defalut
textIndent
23
in HWTEST_F()
343
spanParagraphStyle.
textIndent
= Dimension(23.0_vp);
in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/
H
A
D
text_base.cpp
225
if (testProperty.
textIndent
.has_value()) {
in CreateTextParagraph()
226
textModel.SetTextIndent(testProperty.
textIndent
.value());
in CreateTextParagraph()
H
A
D
span_string_test_ng.cpp
1058
spanParagraphStyle.
textIndent
= Dimension(23);
in HWTEST_F()
1083
EXPECT_EQ(paraSpan->GetParagraphStyle().
textIndent
, Dimension(23));
in HWTEST_F()
1108
spanParagraphStyle.
textIndent
= Dimension(23);
in HWTEST_F()
1134
spanParagraphStyle.
textIndent
= Dimension(23);
in HWTEST_F()
1165
spanParagraphStyle.
textIndent
= Dimension(23);
in HWTEST_F()
1216
spanParagraphStyle.
textIndent
= Dimension(23);
in HWTEST_F()
H
A
D
text_base.h
203
std::optional<Dimension>
textIndent
= std::nullopt;
member
H
A
D
text_test_ng.cpp
77
testProperty.
textIndent
= std::make_optional(TEXT_INDENT);
in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/style_string/
H
A
D
js_span_object.cpp
1195
"
textIndent
", &JSParagraphStyleSpan::GetTextIndent, &JSParagraphStyleSpan::SetTextIndent);
in JSBind()
1260
if (!obj->HasProperty("
textIndent
")) {
in ParseJsTextIndent()
1263
auto
textIndent
= obj->GetProperty("
textIndent
");
in ParseJsTextIndent()
local
1265
if (!
textIndent
->IsNull() &&
textIndent
->IsObject()) {
in ParseJsTextIndent()
1266
auto textIndentObj = JSRef<JSObject>::Cast(
textIndent
);
in ParseJsTextIndent()
1281
paragraphStyle.
textIndent
= size;
in ParseJsTextIndent()
1428
if (!paragraphStyleSpan_->GetParagraphStyle().
textIndent
.has_value()) {
in GetTextIndent()
1432
JSRef<JSVal>::Make(JSVal(ToJSValue(paragraphStyleSpan_->GetParagraphStyle().
textIndent
in GetTextIndent()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H
A
D
text_style.h
425
void SetTextIndent(const Dimension&
textIndent
)
in SetTextIndent()
argument
427
textIndent_ =
textIndent
;
in SetTextIndent()
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/
H
A
D
rosen_render_custom_paint.cpp
680
if (context.
textIndent
.value().Unit() != DimensionUnit::PERCENT) {
in IsApplyIndent()
681
indent = context.
textIndent
.value().ConvertToPx();
in IsApplyIndent()
685
indent = context.constraintWidth.value().ConvertToPx() * context.
textIndent
.value().Value();
in IsApplyIndent()
833
if (context.
textIndent
.has_value() && !LessOrEqual(context.
textIndent
.value().Value(), 0.0)) {
in MeasureTextSizeInner()
/foundation/arkui/ace_engine/adapter/ohos/capability/html/
H
A
D
html_to_span.cpp
295
style->
textIndent
= FromString(value);
in InitParagrap()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H
A
D
arkComponent.js
9600
textIndent
(value) {
11931
textIndent
(value) {
13281
textIndent
(value) {
14969
textIndent
(value) {
Completed in 50 milliseconds