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:scroller
(Results
1 - 25
of
39
) sorted by relevance
1
2
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H
A
D
cj_grid_ffi.cpp
36
auto
scroller
= FFIData::GetData<NativeNGScroller>(scrollerID);
in FfiOHOSAceFrameworkGridCreateScroller()
local
37
if (
scroller
== nullptr) {
in FfiOHOSAceFrameworkGridCreateScroller()
43
scrollBarProxy =
scroller
->GetScrollBarProxy();
in FfiOHOSAceFrameworkGridCreateScroller()
46
scroller
->SetScrollBarProxy(scrollBarProxy);
in FfiOHOSAceFrameworkGridCreateScroller()
50
scroller
->SetController(positionController);
in FfiOHOSAceFrameworkGridCreateScroller()
H
A
D
cj_scrollbar_ffi.cpp
42
auto
scroller
= FFIData::GetData<NativeNGScroller>(scrollerID);
in FfiOHOSAceFrameworkScrollBarCreate()
local
43
if (
scroller
== nullptr) {
in FfiOHOSAceFrameworkScrollBarCreate()
47
auto scrollBarProxy = AceType::DynamicCast<NG::ScrollBarProxy>(
scroller
->GetScrollBarProxy());
in FfiOHOSAceFrameworkScrollBarCreate()
H
A
D
cj_list_ffi.cpp
75
auto
scroller
= FFIData::GetData<NativeNGScroller>(scrollerID);
in FfiOHOSAceFrameworkListCreate()
local
76
if (
scroller
== nullptr) {
in FfiOHOSAceFrameworkListCreate()
81
scroller
->SetController(listController);
in FfiOHOSAceFrameworkListCreate()
83
auto proxy = AceType::DynamicCast<NG::ScrollBarProxy>(
scroller
->GetScrollBarProxy());
in FfiOHOSAceFrameworkListCreate()
86
scroller
->SetScrollBarProxy(proxy);
in FfiOHOSAceFrameworkListCreate()
H
A
D
cj_scroll_ffi.cpp
138
auto
scroller
= FFIData::GetData<NativeNGScroller>(scrollerID);
in FfiOHOSAceFrameworkScrollCreate()
local
139
if (
scroller
== nullptr) {
in FfiOHOSAceFrameworkScrollCreate()
145
scroller
->SetController(positionController);
in FfiOHOSAceFrameworkScrollCreate()
146
auto proxy =
scroller
->GetScrollBarProxy();
in FfiOHOSAceFrameworkScrollCreate()
149
scroller
->SetScrollBarProxy(proxy);
in FfiOHOSAceFrameworkScrollCreate()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H
A
D
js_path2d.h
32
static void Destructor(JSPath2D*
scroller
);
H
A
D
js_rendering_context_settings.h
32
static void Destructor(JSRenderingContextSettings*
scroller
);
H
A
D
js_canvas_gradient.h
33
static void Destructor(JSCanvasGradient*
scroller
);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_indicator.cpp
362
auto
scroller
= Referenced::MakeRefPtr<JSIndicatorController>();
in Constructor()
local
363
scroller
->IncRefCount();
in Constructor()
364
args.SetReturnValue(Referenced::RawPtr(
scroller
));
in Constructor()
367
void JSIndicatorController::Destructor(JSIndicatorController*
scroller
)
in Destructor()
argument
369
if (
scroller
!= nullptr) {
in Destructor()
370
scroller
->DecRefCount();
in Destructor()
H
A
D
js_text_clock.cpp
322
auto
scroller
= Referenced::MakeRefPtr<JSTextClockController>();
in Constructor()
local
323
scroller
->IncRefCount();
in Constructor()
324
args.SetReturnValue(Referenced::RawPtr(
scroller
));
in Constructor()
327
void JSTextClockController::Destructor(JSTextClockController*
scroller
)
in Destructor()
argument
329
if (
scroller
!= nullptr) {
in Destructor()
330
scroller
->DecRefCount();
in Destructor()
H
A
D
js_scroller.cpp
84
auto
scroller
= Referenced::MakeRefPtr<JSScroller>();
in Constructor()
local
85
scroller
->IncRefCount();
in Constructor()
86
args.SetReturnValue(Referenced::RawPtr(
scroller
));
in Constructor()
89
void JSScroller::Destructor(JSScroller*
scroller
)
in Destructor()
argument
91
if (
scroller
!= nullptr) {
in Destructor()
92
scroller
->DecRefCount();
in Destructor()
H
A
D
js_list.h
29
static void Destructor(JSListScroller*
scroller
);
40
static void SetScroller(RefPtr<JSScroller>
scroller
);
H
A
D
js_calendar_controller.h
32
static void Destructor(JSCalendarController*
scroller
);
H
A
D
js_text_editable_controller.h
32
static void Destructor(JSTextEditableController*
scroller
);
H
A
D
js_linear_indicator_controller.h
32
static void Destructor(JSLinearIndicatorController*
scroller
);
H
A
D
js_list.cpp
195
void JSList::SetScroller(RefPtr<JSScroller>
scroller
)
in SetScroller()
argument
197
if (
scroller
) {
in SetScroller()
199
scroller
->SetController(listController);
in SetScroller()
202
auto proxy =
scroller
->GetScrollBarProxy();
in SetScroller()
209
scroller
->SetScrollBarProxy(proxy);
in SetScroller()
234
JSRef<JSVal> scrollerValue = obj->GetProperty("
scroller
");
in Create()
236
void*
scroller
= JSRef<JSObject>::Cast(scrollerValue)->Unwrap<JSScroller>();
in Create()
local
237
RefPtr<JSScroller> jsScroller = Referenced::Claim(reinterpret_cast<JSScroller*>(
scroller
));
in Create()
905
auto
scroller
= Referenced::MakeRefPtr<JSListScroller>();
in Constructor()
local
906
scroller
in Constructor()
910
Destructor(JSListScroller*
scroller
)
Destructor()
argument
[all...]
H
A
D
js_video_controller.h
32
static void Destructor(JSVideoController*
scroller
);
H
A
D
js_text_clock.h
50
static void Destructor(JSTextClockController*
scroller
);
H
A
D
js_scroller.h
33
static void Destructor(JSScroller*
scroller
);
H
A
D
js_indicator.h
51
static void Destructor(JSIndicatorController*
scroller
);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
water_flow_model_impl.cpp
53
void WaterFlowModelImpl::SetScroller(RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy)
in SetScroller()
argument
55
auto waterflowScroller = AceType::DynamicCast<V2::WaterFlowPositionController>(
scroller
);
in SetScroller()
H
A
D
list_model_impl.cpp
50
void ListModelImpl::SetScroller(RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy)
in SetScroller()
argument
52
auto listScroller = AceType::DynamicCast<V2::ListPositionController>(
scroller
);
in SetScroller()
H
A
D
water_flow_model_impl.h
28
void SetScroller(RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy) override;
/foundation/arkui/ace_engine/advanced_ui_component/chipgroup/interfaces/
H
A
D
chipgroup.js
395
this.
scroller
= new Scroller();
397
this.
scroller
.isAtEnd(),
438
if (params.
scroller
!== undefined) {
439
this.
scroller
= params.
scroller
;
758
Scroll.create(this.
scroller
);
765
this.isReachEnd = this.
scroller
.isAtEnd();
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/waterflow/
H
A
D
water_flow_model_ng.h
30
void SetScroller(RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy) override;
118
static void SetScroller(FrameNode* frameNode, RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H
A
D
list_model.h
40
virtual void SetScroller(RefPtr<ScrollControllerBase>
scroller
, RefPtr<ScrollProxy> proxy) = 0;
Completed in 11 milliseconds
1
2