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:isLtr
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/text_overlay/
H
A
D
text_overlay_manager.cpp
200
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
local
202
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
local
206
double caretEnd =
isLtr
? textBox.rect.fRight : textBox.rect.fLeft;
208
double caretEnd =
isLtr
? textBox.rect.GetRight() : textBox.rect.GetLeft();
213
double dx =
isLtr
? caretEnd : caretEnd - caretProto_.Width();
249
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
local
251
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
local
255
double caretStart =
isLtr
? textBox.rect.fLeft : textBox.rect.fRight;
257
double caretStart =
isLtr
? textBox.rect.GetLeft() : textBox.rect.GetRight();
262
double dx =
isLtr
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H
A
D
txt_paragraph.cpp
552
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
in ComputeOffsetForCaretUpstream()
local
558
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
in ComputeOffsetForCaretUpstream()
local
562
double caretStart =
isLtr
? textBox.rect.fRight : textBox.rect.fLeft;
in ComputeOffsetForCaretUpstream()
564
double caretStart =
isLtr
? textBox.rect.GetRight() : textBox.rect.GetLeft();
in ComputeOffsetForCaretUpstream()
632
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
in ComputeOffsetForCaretDownstream()
local
633
double caretStart =
isLtr
? textBox.rect.fLeft : textBox.rect.fRight;
in ComputeOffsetForCaretDownstream()
635
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
in ComputeOffsetForCaretDownstream()
local
636
double caretStart =
isLtr
? textBox.rect.GetLeft() : textBox.rect.GetRight();
in ComputeOffsetForCaretDownstream()
/foundation/arkui/ace_engine/frameworks/core/components/text_field/
H
A
D
rosen_render_text_field.cpp
1413
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
local
1415
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
local
1419
double caretEnd =
isLtr
? textBox.rect.fRight : textBox.rect.fLeft;
1421
double caretEnd =
isLtr
? textBox.rect.GetRight() : textBox.rect.GetLeft();
1426
double dx =
isLtr
? caretEnd : caretEnd - caretProto_.Width();
1461
bool
isLtr
= textBox.direction == txt::TextDirection::ltr;
local
1463
bool
isLtr
= textBox.direction == Rosen::TextDirection::LTR;
local
1467
double caretStart =
isLtr
? textBox.rect.fLeft : textBox.rect.fRight;
1469
double caretStart =
isLtr
? textBox.rect.GetLeft() : textBox.rect.GetRight();
1474
double dx =
isLtr
[all...]
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/sample/
H
A
D
venc_sample.cpp
871
int32_t
isLtr
= 0;
in CheckFormatKey()
local
873
if (format->GetIntValue(Media::Tag::VIDEO_PER_FRAME_IS_LTR,
isLtr
)) {
in CheckFormatKey()
874
UNITTEST_INFO_LOG("
isLtr
is:%d",
isLtr
);
in CheckFormatKey()
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/
H
A
D
videoenc_api11_sample.cpp
145
int32_t
isLtr
= 0;
in DumpLtrInfo()
local
147
OH_AVFormat_GetIntValue(format, OH_MD_KEY_VIDEO_PER_FRAME_IS_LTR, &
isLtr
);
in DumpLtrInfo()
Completed in 9 milliseconds