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:devConf
(Results
1 - 3
of
3
) sorted by relevance
/foundation/multimodalinput/input/util/common/src/
H
A
D
util.cpp
406
static int32_t ConfigItemSwitch(const std::string &configItem, const std::string &value, DeviceConfig &
devConf
)
in ConfigItemSwitch()
argument
418
devConf
.autoSwitch = stoi(value);
in ConfigItemSwitch()
420
devConf
.delayTime = stoi(value);
in ConfigItemSwitch()
421
if (
devConf
.delayTime < MIN_DELAYTIME ||
devConf
.delayTime > MAX_DELAYTIME) {
in ConfigItemSwitch()
426
devConf
.intervalTime = stoi(value);
in ConfigItemSwitch()
427
if (
devConf
.intervalTime < MIN_INTERVALTIME ||
devConf
.intervalTime > MAX_INTERVALTIME) {
in ConfigItemSwitch()
432
devConf
.keyboardType = stoi(value);
in ConfigItemSwitch()
437
static int32_t ReadConfigFile(const std::string &realPath, DeviceConfig &
devConf
)
in ReadConfigFile()
argument
475
ReadTomlFile(const std::string &filePath, DeviceConfig &
devConf
)
ReadTomlFile()
argument
[all...]
/foundation/multimodalinput/input/service/event_handler/src/
H
A
D
key_auto_repeat.cpp
61
DeviceConfig
devConf
;
in AddDeviceConfig()
local
62
if (ReadTomlFile(GetTomlFilePath(fileName),
devConf
) != RET_OK) {
in AddDeviceConfig()
71
deviceConfig_[deviceId] =
devConf
;
in AddDeviceConfig()
90
DeviceConfig
devConf
= GetAutoSwitch(keyEvent->GetDeviceId());
in SelectAutoRepeat()
local
91
MMI_HILOGD("AutoRepeatSwitch:%{public}d, keyEvent flag:%{public}x",
devConf
.autoSwitch, keyEvent->GetFlag());
in SelectAutoRepeat()
92
if (
devConf
.autoSwitch != OPEN_AUTO_REPEAT && !keyEvent->HasFlag(InputEvent::EVENT_FLAG_SIMULATE)) {
in SelectAutoRepeat()
/foundation/multimodalinput/input/util/common/include/
H
A
D
util.h
72
int32_t ReadTomlFile(const std::string &filePath, DeviceConfig &
devConf
);
Completed in 2 milliseconds