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:newOption
(Results
1 - 3
of
3
) sorted by relevance
/foundation/multimodalinput/input/service/subscriber/test/
H
A
D
key_subscriber_handler_test.cpp
380
auto
newOption
= std::make_shared<KeyOption>();
in HWTEST_F()
local
382
newOption
->SetPreKeys({1, 2, 3});
in HWTEST_F()
384
ASSERT_FALSE(handler.IsEqualKeyOption(
newOption
, oldOption));
in HWTEST_F()
385
newOption
->SetFinalKey(1);
in HWTEST_F()
387
ASSERT_FALSE(handler.IsEqualKeyOption(
newOption
, oldOption));
in HWTEST_F()
388
newOption
->SetFinalKeyDown(true);
in HWTEST_F()
390
ASSERT_FALSE(handler.IsEqualKeyOption(
newOption
, oldOption));
in HWTEST_F()
391
newOption
->SetFinalKeyDownDuration(100);
in HWTEST_F()
393
ASSERT_FALSE(handler.IsEqualKeyOption(
newOption
, oldOption));
in HWTEST_F()
394
newOption
in HWTEST_F()
1150
std::shared_ptr<KeyOption>
newOption
= std::make_shared<KeyOption>();
HWTEST_F()
local
[all...]
/foundation/multimodalinput/input/service/subscriber/src/
H
A
D
key_subscriber_handler.cpp
363
bool KeySubscriberHandler::IsEqualKeyOption(std::shared_ptr<KeyOption>
newOption
,
in IsEqualKeyOption()
argument
367
CHKPF(
newOption
);
in IsEqualKeyOption()
369
if (!IsEqualPreKeys(
newOption
->GetPreKeys(), oldOption->GetPreKeys())) {
in IsEqualKeyOption()
373
if (
newOption
->GetFinalKey() != oldOption->GetFinalKey()) {
in IsEqualKeyOption()
377
if (
newOption
->IsFinalKeyDown() != oldOption->IsFinalKeyDown()) {
in IsEqualKeyOption()
381
if (
newOption
->GetFinalKeyDownDuration() != oldOption->GetFinalKeyDownDuration()) {
in IsEqualKeyOption()
385
if (
newOption
->GetFinalKeyUpDelay() != oldOption->GetFinalKeyUpDelay()) {
in IsEqualKeyOption()
/foundation/multimodalinput/input/service/subscriber/include/
H
A
D
key_subscriber_handler.h
102
bool IsEqualKeyOption(std::shared_ptr<KeyOption>
newOption
, std::shared_ptr<KeyOption> oldOption);
Completed in 6 milliseconds