OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:singletontest
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/base/memory/
singleton_unittest.cc
153
class
SingletonTest
: public testing::Test {
155
SingletonTest
() {}
200
bool
SingletonTest
::non_leak_called_ = false;
201
bool
SingletonTest
::leaky_called_ = false;
202
bool
SingletonTest
::static_called_ = false;
204
TEST_F(
SingletonTest
, Basic) {
269
TEST_F(
SingletonTest
, Alignment) {
/external/chromium/base/memory/
singleton_unittest.cc
144
class
SingletonTest
: public testing::Test {
146
SingletonTest
() { }
191
bool
SingletonTest
::non_leak_called_ = false;
192
bool
SingletonTest
::leaky_called_ = false;
193
bool
SingletonTest
::static_called_ = false;
195
TEST_F(
SingletonTest
, Basic) {
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
ExposureCompensationTest.java
52
private static ExposureCompensationTest
singletonTest
= null;
74
if (
singletonTest
== null) {
76
singletonTest
= new ExposureCompensationTest();
77
singletonTest
.initializeTest();
79
return
singletonTest
;
ColorCheckerTest.java
51
private static ColorCheckerTest
singletonTest
= null;
83
if (
singletonTest
== null) {
85
singletonTest
= new ColorCheckerTest();
86
singletonTest
.initializeTest();
88
return
singletonTest
;
WhiteBalanceTest.java
71
private static WhiteBalanceTest
singletonTest
= null;
108
if (
singletonTest
== null) {
110
singletonTest
= new WhiteBalanceTest();
111
singletonTest
.initializeTest();
113
return
singletonTest
;
MeteringTest.java
81
private static MeteringTest
singletonTest
= null;
102
if (
singletonTest
== null) {
104
singletonTest
= new MeteringTest();
105
singletonTest
.initializeTest();
107
return
singletonTest
;
AutoLockTest.java
110
private static AutoLockTest
singletonTest
= null;
215
if (
singletonTest
== null) {
217
singletonTest
= new AutoLockTest();
218
singletonTest
.initializeTest();
220
return
singletonTest
;
[
all
...]
Completed in 491 milliseconds