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:notifycallback
(Results
1 - 7
of
7
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/component_test/
H
A
D
idle_watcher.cpp
125
for (IdleNotifycallback&
notifycallback
: pendingIdleObservers_) {
in TriggerIdleNotification()
126
notifycallback
();
in TriggerIdleNotification()
132
void IdleWatcher::RequestNextIdleStatusNotification(IdleNotifycallback&&
notifycallback
, bool haveUIChange)
in RequestNextIdleStatusNotification()
argument
136
notifycallback
= [this,
notifycallback
]() {
in RequestNextIdleStatusNotification()
138
notifycallback
();
in RequestNextIdleStatusNotification()
142
notifycallback
();
in RequestNextIdleStatusNotification()
145
pendingIdleObservers_.emplace_back(
notifycallback
);
in RequestNextIdleStatusNotification()
H
A
D
component_test_proxy.cpp
67
void ComponentTestManagerProxy::RequestContinuousIdleStatusNotification(IdleNotifycallback&&
notifycallback
)
in RequestContinuousIdleStatusNotification()
argument
69
GetCurrentComponentTestManager()->RequestContinuousIdleStatusNotification(std::move(
notifycallback
));
in RequestContinuousIdleStatusNotification()
H
A
D
component_test_manager_impl.cpp
112
void ComponentTestManagerImpl::RequestContinuousIdleStatusNotification(IdleNotifycallback&&
notifycallback
)
in RequestContinuousIdleStatusNotification()
argument
114
idleWatcher_->RequestContinuousIdleStatusNotification(std::move(
notifycallback
));
in RequestContinuousIdleStatusNotification()
H
A
D
component_test_manager.h
36
virtual void RequestContinuousIdleStatusNotification(IdleNotifycallback&&
notifycallback
) = 0;
H
A
D
component_test_proxy.h
36
static void RequestContinuousIdleStatusNotification(IdleNotifycallback&&
notifycallback
);
H
A
D
idle_watcher.h
54
void RequestNextIdleStatusNotification(IdleNotifycallback&&
notifycallback
, bool haveUIChange = false);
H
A
D
component_test_manager_impl.h
44
void RequestContinuousIdleStatusNotification(IdleNotifycallback&&
notifycallback
) override;
Completed in 2 milliseconds