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 - 22
of
22
) sorted by relevance
/foundation/multimodalinput/input/intention/drag/data/src/
H
A
D
drag_params.cpp
310
GetDragStateReply::GetDragStateReply(DragState
dragState
)
in GetDragStateReply()
argument
311
: dragState_(
dragState
)
in GetDragStateReply()
321
int32_t
dragState
{ -1 };
in Unmarshalling()
322
if (!parcel.ReadInt32(
dragState
) ||
in Unmarshalling()
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/components_ng/manager/drag_drop/
H
A
D
drag_drop_func_wrapper.cpp
108
if (dragAction->
dragState
== DragAdapterState::SENDING) {
in ConfirmCurPointerEventInfo()
113
dragAction->
dragState
= DragAdapterState::REJECT;
in ConfirmCurPointerEventInfo()
199
int32_t
dragState
= static_cast<int32_t>(dragStatus);
in HandleCallback()
local
200
dragAction->callback(dragNotifyMsg,
dragState
);
in HandleCallback()
211
if (manager->GetDragAction() != nullptr && (manager->GetDragAction())->
dragState
== DragAdapterState::SENDING) {
in CheckStartAction()
214
dragAction->
dragState
= DragAdapterState::SENDING;
in CheckStartAction()
238
manager->GetDragAction()->
dragState
= DragAdapterState::INIT;
in StartDragAction()
246
manager->GetDragAction()->
dragState
= DragAdapterState::INIT;
in StartDragAction()
253
dragAction->
dragState
= DragAdapterState::INIT;
in StartDragAction()
261
manager->GetDragAction()->
dragState
in StartDragAction()
[all...]
H
A
D
drag_drop_manager.cpp
1578
DragState
dragState
;
in IsMSDPDragging()
local
1579
InteractionInterface::GetInstance()->GetDragState(
dragState
);
in IsMSDPDragging()
1580
return
dragState
== DragState::START;
in IsMSDPDragging()
/foundation/arkui/ace_engine/adapter/ohos/capability/interaction/
H
A
D
interaction_impl.cpp
239
int32_t InteractionImpl::GetDragState(DragState&
dragState
) const
in GetDragState()
245
dragState
= DragState::ERROR;
in GetDragState()
248
dragState
= DragState::START;
in GetDragState()
251
dragState
= DragState::STOP;
in GetDragState()
254
dragState
= DragState::CANCEL;
in GetDragState()
257
dragState
= DragState::MOTION_DRAGGING;
in GetDragState()
260
dragState
= DragState::ERROR;
in GetDragState()
H
A
D
interaction_impl.h
50
int32_t GetDragState(DragState&
dragState
) const override;
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/utils/
H
A
D
internal_drag_action.h
57
DragAdapterState
dragState
= DragAdapterState::INIT;
member
/foundation/arkui/ace_engine/frameworks/core/common/interaction/
H
A
D
interaction_interface.h
51
virtual int32_t GetDragState(DragState&
dragState
) const = 0;
/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
106
DragState
dragState
= DragState::PENDING;
member
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()
838
dragState
= asyncCtx->
dragState
;
in OnMultipleComplete()
840
if (
dragState
== DragState::REJECT) {
in OnMultipleComplete()
868
DragState
dragState
in OnComplete()
[all...]
/foundation/multimodalinput/input/intention/cooperate/plugin/src/input_event_transmission/
H
A
D
input_event_builder.cpp
222
auto
dragState
= env_->GetDragManager().GetDragState();
in ResetPressedEvents()
local
224
if (
dragState
== DragState::START && buttonId == MMI::PointerEvent::MOUSE_BUTTON_LEFT) {
in ResetPressedEvents()
/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/server/src/
H
A
D
drag_server.cpp
374
DragState
dragState
{};
in GetDragState()
376
int32_t ret = env_->GetDragManager().GetDragState(
dragState
);
in GetDragState()
381
GetDragStateReply dragStateReply {
dragState
};
in GetDragState()
/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/prototype/include/
H
A
D
i_drag_manager.h
50
virtual int32_t GetDragState(DragState &
dragState
) = 0;
/foundation/multimodalinput/input/intention/frameworks/client/include/
H
A
D
intention_manager.h
72
int32_t GetDragState(DragState &
dragState
);
/foundation/multimodalinput/input/intention/frameworks/client/src/
H
A
D
intention_manager.cpp
348
int32_t IntentionManager::GetDragState(DragState &
dragState
)
in GetDragState()
argument
351
return drag_.GetDragState(*tunnel_,
dragState
);
in GetDragState()
/foundation/multimodalinput/input/intention/drag/data/include/
H
A
D
drag_params.h
200
explicit GetDragStateReply(DragState
dragState
);
/foundation/multimodalinput/input/intention/drag/client/src/
H
A
D
drag_client.cpp
346
int32_t DragClient::GetDragState(ITunnelClient &tunnel, DragState &
dragState
)
in GetDragState()
argument
356
dragState
= reply.dragState_;
in GetDragState()
/foundation/multimodalinput/input/service/window_manager/include/
H
A
D
input_windows_manager.h
53
void JudgMouseIsDownOrUp(bool
dragState
);
/foundation/multimodalinput/input/service/window_manager/test/
H
A
D
input_windows_manager_test.cpp
3355
bool
dragState
= false;
in HWTEST_F()
local
3360
EXPECT_NO_FATAL_FAILURE(inputWindowsManager.JudgMouseIsDownOrUp(
dragState
));
in HWTEST_F()
3362
dragState
= true;
in HWTEST_F()
3365
EXPECT_NO_FATAL_FAILURE(inputWindowsManager.JudgMouseIsDownOrUp(
dragState
));
in HWTEST_F()
/foundation/multimodalinput/input/service/window_manager/src/
H
A
D
input_windows_manager.cpp
2801
void InputWindowsManager::JudgMouseIsDownOrUp(bool
dragState
)
in UpdateDisplayInfo()
argument
2803
if (!
dragState
&& (lastPointerEvent_->GetPointerAction() == PointerEvent::POINTER_ACTION_BUTTON_UP ||
in UpdateDisplayInfo()
Completed in 30 milliseconds