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:Singleton
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/c_utils/base/include/
H
A
D
singleton.h
69
* @brief Sets `MyClass` as a `
Singleton
`.
72
* `
Singleton
<MyClass>::GetInstance()`.
80
friend
Singleton
<MyClass>;\
191
* @brief
Singleton
is a normally initialized singleton (without pointers and
195
class
Singleton
: public NoCopyable {
class
208
T
Singleton
<T>::instance_;
/commonlibrary/c_utils/base/test/unittest/common/
H
A
D
utils_singleton_test.cpp
49
class SingletonTest: public
Singleton
<SingletonTest> {
129
SingletonDeclearTest &st1 =
Singleton
<SingletonDeclearTest>::GetInstance();
in HWTEST_F()
130
SingletonDeclearTest &st2 =
Singleton
<SingletonDeclearTest>::GetInstance();
in HWTEST_F()
H
A
D
utils_refbase_test.cpp
219
class IPCProcessSkeleton : public virtual RefBase, public
Singleton
<IPCProcessSkeleton>
221
friend class
Singleton
<IPCProcessSkeleton>;
/commonlibrary/c_utils/base/test/benchmarktest/singleton_benchmark_test/
H
A
D
singleton_benchmark_test.cpp
81
class SingletonTest : public
Singleton
<SingletonTest> {
144
SingletonDeclearTest &st1 =
Singleton
<SingletonDeclearTest>::GetInstance();
in BENCHMARK_F()
145
SingletonDeclearTest &st2 =
Singleton
<SingletonDeclearTest>::GetInstance();
in BENCHMARK_F()
208
* @tc.desc: test
Singleton
Destroy Instance
/commonlibrary/c_utils/base/test/benchmarktest/refbase_benchmark_test/
H
A
D
refbase_benchmark_test.cpp
253
class IPCProcessSkeleton : public virtual RefBase, public
Singleton
<IPCProcessSkeleton> {
254
friend class
Singleton
<IPCProcessSkeleton>;
Completed in 6 milliseconds