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:hotkeys
(Results
1 - 6
of
6
) sorted by relevance
/foundation/arkui/ace_engine/test/mock/adapter/
H
A
D
mock_input_manager.cpp
21
bool InputManager::GetSystemHotkeys(std::vector<HotKey>&
hotkeys
)
in GetSystemHotkeys()
argument
25
hotkeys
.push_back({ prekeys, finalKey });
in GetSystemHotkeys()
/foundation/arkui/ace_engine/adapter/preview/osal/
H
A
D
input_manager.cpp
20
bool InputManager::GetSystemHotkeys(std::vector<HotKey>&
hotkeys
)
in GetSystemHotkeys()
argument
/foundation/arkui/ace_engine/adapter/ohos/osal/
H
A
D
input_manager.cpp
64
bool InputManager::GetSystemHotkeys(std::vector<HotKey>&
hotkeys
)
in GetSystemHotkeys()
argument
77
hotkeys
.push_back({ key->GetPreKeys(), key->GetFinalKey() });
in GetSystemHotkeys()
/foundation/arkui/ace_engine/frameworks/base/input_manager/
H
A
D
input_manager.h
47
static bool GetSystemHotkeys(std::vector<HotKey>&
hotkeys
);
/foundation/multimodalinput/input/frameworks/native/input/
H
A
D
oh_input_manager.cpp
1697
auto
hotkeys
= new (std::nothrow)Input_Hotkey *[count];
in OH_Input_CreateAllSystemHotkeys()
local
1699
hotkeys
[i] = new (std::nothrow)Input_Hotkey();
in OH_Input_CreateAllSystemHotkeys()
1702
g_hotkeyCounts.insert(std::make_pair(
hotkeys
, count));
in OH_Input_CreateAllSystemHotkeys()
1703
return
hotkeys
;
in OH_Input_CreateAllSystemHotkeys()
1706
void OH_Input_DestroyAllSystemHotkeys(Input_Hotkey **
hotkeys
, int32_t count)
in OH_Input_DestroyAllSystemHotkeys()
argument
1709
if (g_hotkeyCounts.find(
hotkeys
) != g_hotkeyCounts.end()) {
in OH_Input_DestroyAllSystemHotkeys()
1710
if (count != g_hotkeyCounts[
hotkeys
]) {
in OH_Input_DestroyAllSystemHotkeys()
1713
for (int32_t i = 0; i < g_hotkeyCounts[
hotkeys
]; ++i) {
in OH_Input_DestroyAllSystemHotkeys()
1714
if (
hotkeys
[i] != nullptr) {
in OH_Input_DestroyAllSystemHotkeys()
1715
delete
hotkeys
[
in OH_Input_DestroyAllSystemHotkeys()
[all...]
/foundation/multimodalinput/input/interfaces/kits/c/input/
H
A
D
oh_input_manager.h
1353
* not equal to the number of system
hotkeys
.
1362
* @param
hotkeys
Pointer to an array of {@Link Input_Hotkey } instances created by the
1368
void OH_Input_DestroyAllSystemHotkeys(Input_Hotkey **
hotkeys
, int32_t count);
Completed in 6 milliseconds