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:scrollWidth
(Results
1 - 9
of
9
) sorted by relevance
/foundation/arkui/ui_lite/frameworks/components/
H
A
D
ui_scroll_view.cpp
199
int16_t
scrollWidth
= GetWidth();
in DragXInner()
local
200
if (childRight <
scrollWidth
- (scrollBlankSize_ + reboundSize)) {
in DragXInner()
202
} else if (childRight + distance <
scrollWidth
- (scrollBlankSize_ + reboundSize)) {
in DragXInner()
203
distance =
scrollWidth
- (scrollBlankSize_ + reboundSize) - childRight - 1;
in DragXInner()
290
int16_t
scrollWidth
= GetWidth();
in CalculateReboundDistance()
local
299
} else if (right <
scrollWidth
- 1) {
in CalculateReboundDistance()
300
dragDistanceX =
scrollWidth
- scrollBlankSize_ - right - 1;
in CalculateReboundDistance()
H
A
D
ui_list.cpp
838
int16_t
scrollWidth
= GetWidth();
in CalculateReboundDistance()
local
859
if (right < (
scrollWidth
- scrollBlankSize_ - 1)) {
in CalculateReboundDistance()
860
if ((dragDistanceX + right) < (
scrollWidth
- scrollBlankSize_ - reboundSize_ - 1)) {
in CalculateReboundDistance()
863
dragDistanceX +=
scrollWidth
- scrollBlankSize_ - 1 - (right + dragDistanceX);
in CalculateReboundDistance()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_water_flow.h
52
static void SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
);
H
A
D
js_grid.h
38
static void SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
);
H
A
D
js_list.h
61
static void SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
);
H
A
D
js_water_flow.cpp
555
void JSWaterFlow::SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
)
in SetScrollBarWidth()
argument
557
auto scrollBarWidth = JSScrollable::ParseBarWidth(
scrollWidth
);
in SetScrollBarWidth()
H
A
D
js_grid.cpp
417
void JSGrid::SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
)
in SetScrollBarWidth()
argument
419
auto scrollBarWidth = JSScrollable::ParseBarWidth(
scrollWidth
);
in SetScrollBarWidth()
H
A
D
js_list.cpp
156
void JSList::SetScrollBarWidth(const JSCallbackInfo&
scrollWidth
)
in SetScrollBarWidth()
argument
158
auto scrollBarWidth = JSScrollable::ParseBarWidth(
scrollWidth
);
in SetScrollBarWidth()
/foundation/arkui/ace_engine/test/unittest/core/pattern/scroll/
H
A
D
scroll_layout_test_ng.cpp
124
float
scrollWidth
= 150.0f;
in HWTEST_F()
local
126
layoutProperty_->UpdateScrollWidth(
scrollWidth
);
in HWTEST_F()
127
EXPECT_EQ(layoutProperty_->GetScrollWidth().value(),
scrollWidth
);
in HWTEST_F()
Completed in 8 milliseconds