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:DragState
(Results
1 - 19
of
19
) sorted by relevance
/foundation/arkui/ace_engine/adapter/ohos/capability/interaction/
H
A
D
interaction_impl.cpp
239
int32_t InteractionImpl::GetDragState(
DragState
& dragState) const
in GetDragState()
241
Msdp::DeviceStatus::
DragState
state;
in GetDragState()
244
case Msdp::DeviceStatus::
DragState
::ERROR:
in GetDragState()
245
dragState =
DragState
::ERROR;
in GetDragState()
247
case Msdp::DeviceStatus::
DragState
::START:
in GetDragState()
248
dragState =
DragState
::START;
in GetDragState()
250
case Msdp::DeviceStatus::
DragState
::STOP:
in GetDragState()
251
dragState =
DragState
::STOP;
in GetDragState()
253
case Msdp::DeviceStatus::
DragState
::CANCEL:
in GetDragState()
254
dragState =
DragState
in GetDragState()
[all...]
H
A
D
interaction_impl.h
50
int32_t GetDragState(
DragState
& dragState) const override;
/foundation/multimodalinput/input/intention/prototype/include/
H
A
D
i_drag_manager.h
38
virtual void RegisterStateChange(std::function<void(
DragState
)> callback) = 0;
49
virtual
DragState
GetDragState() const = 0;
50
virtual int32_t GetDragState(
DragState
&dragState) = 0;
52
virtual void SetDragState(
DragState
state) = 0;
/foundation/multimodalinput/input/intention/drag/data/include/
H
A
D
drag_params.h
200
explicit GetDragStateReply(
DragState
dragState);
205
DragState
dragState_ {
DragState
::ERROR };
/foundation/multimodalinput/input/intention/drag/data/src/
H
A
D
drag_params.cpp
310
GetDragStateReply::GetDragStateReply(
DragState
dragState)
in GetDragStateReply()
323
(dragState < static_cast<int32_t>(
DragState
::ERROR)) ||
in Unmarshalling()
324
(dragState > static_cast<int32_t>(
DragState
::MOTION_DRAGGING))) {
in Unmarshalling()
327
dragState_ = static_cast<
DragState
>(dragState);
in Unmarshalling()
/foundation/arkui/ace_engine/frameworks/core/common/interaction/
H
A
D
interaction_interface.h
51
virtual int32_t GetDragState(
DragState
& dragState) const = 0;
H
A
D
interaction_data.h
78
enum class
DragState
{
class
/foundation/arkui/ace_engine/adapter/preview/entrance/msdp/
H
A
D
interaction_impl.h
49
int32_t GetDragState(
DragState
& dragState) const override;
H
A
D
interaction_impl.cpp
93
int32_t InteractionImpl::GetDragState(
DragState
& dragState) const
in GetDragState()
/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/
H
A
D
js_drag_controller.cpp
75
enum class
DragState
{ PENDING, SENDING, REJECT, SUCCESS };
class
106
DragState
dragState =
DragState
::PENDING;
810
if (asyncCtx->dragState ==
DragState
::SENDING) {
in StartDragService()
811
asyncCtx->dragState =
DragState
::SUCCESS;
in StartDragService()
832
DragState
dragState =
DragState
::PENDING;
in OnMultipleComplete()
835
if (asyncCtx->dragState ==
DragState
::PENDING) {
in OnMultipleComplete()
836
asyncCtx->dragState =
DragState
::SENDING;
in OnMultipleComplete()
840
if (dragState ==
DragState
in OnMultipleComplete()
[all...]
/foundation/arkui/ace_engine/test/mock/core/common/
H
A
D
mock_interaction_interface.h
49
MOCK_METHOD(int32_t, GetDragState, (
DragState
& dragState), (const, override));
/foundation/multimodalinput/input/intention/drag/client/include/
H
A
D
drag_client.h
59
int32_t GetDragState(ITunnelClient &tunnel,
DragState
&dragState);
/foundation/multimodalinput/input/intention/frameworks/client/include/
H
A
D
intention_manager.h
72
int32_t GetDragState(
DragState
&dragState);
/foundation/multimodalinput/input/intention/cooperate/plugin/src/input_event_transmission/
H
A
D
input_event_builder.cpp
224
if (dragState ==
DragState
::START && buttonId == MMI::PointerEvent::MOUSE_BUTTON_LEFT) {
in ResetPressedEvents()
/foundation/multimodalinput/input/intention/drag/client/src/
H
A
D
drag_client.cpp
346
int32_t DragClient::GetDragState(ITunnelClient &tunnel,
DragState
&dragState)
in GetDragState()
507
listener->OnDragMessage(static_cast<
DragState
>(state));
in OnStateChangedMessage()
/foundation/multimodalinput/input/intention/frameworks/client/src/
H
A
D
intention_manager.cpp
348
int32_t IntentionManager::GetDragState(
DragState
&dragState)
in GetDragState()
/foundation/multimodalinput/input/intention/drag/server/src/
H
A
D
drag_server.cpp
374
DragState
dragState {};
in GetDragState()
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/
H
A
D
drag_drop_manager.cpp
1578
DragState
dragState;
in IsMSDPDragging()
1580
return dragState ==
DragState
::START;
in IsMSDPDragging()
/foundation/window/window_manager/window_scene/session/host/src/
H
A
D
scene_session.cpp
2115
Msdp::DeviceStatus::
DragState
state = Msdp::DeviceStatus::
DragState
::STOP;
in RotateDragWindow()
2117
if (state == Msdp::DeviceStatus::
DragState
::START) {
in RotateDragWindow()
Completed in 21 milliseconds