Searched refs:count (Results 26 - 50 of 9536) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
H A Dreset_pointer.pass.cpp21 static int count; member in struct:B
23 B() {++count;}
24 B(const B&) {++count;}
25 virtual ~B() {--count;}
28 int B::count = 0; member in class:B
33 static int count; member in struct:A
35 A() {++count;}
36 A(const A&) {++count;}
37 ~A() {--count;}
40 int A::count member in class:A
[all...]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/
H A Dshared_ptr_Y.pass.cpp22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count member in class:A
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DClassCounter.java32 private int count; field in class:ClassCounter
40 return count;
48 count++;
54 count++;
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dnullptr_asgn.pass.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
35 assert(A::count == 3);
37 assert(A::count == 0);
40 assert(A::count == 0);
H A Dmove_convert07.fail.cpp21 static int count; member in struct:A
22 A() {++count;}
23 A(const A&) {++count;}
24 virtual ~A() {--count;}
27 int A::count = 0; member in class:A
32 static int count; member in struct:B
33 B() {++count;}
34 B(const B&) {++count;}
35 virtual ~B() {--count;}
38 int B::count member in class:B
[all...]
H A Dmove_convert08.fail.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 virtual ~A() {--count;}
29 int A::count = 0; member in class:A
34 static int count; member in struct:B
35 B() {++count;}
36 B(const B&) {++count;}
37 virtual ~B() {--count;}
40 int B::count member in class:B
[all...]
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dnullptr.pass.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
35 assert(A::count == 1);
37 assert(A::count == 0);
40 assert(A::count == 0);
H A Dmove_convert01.pass.cpp21 static int count; member in struct:A
22 A() {++count;}
23 A(const A&) {++count;}
24 virtual ~A() {--count;}
27 int A::count = 0; member in class:A
32 static int count; member in struct:B
33 B() {++count;}
34 B(const B&) {++count;}
35 virtual ~B() {--count;}
38 int B::count member in class:B
[all...]
H A Dmove_convert02.pass.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 virtual ~A() {--count;}
29 int A::count = 0; member in class:A
34 static int count; member in struct:B
35 B() {++count;}
36 B(const B&) {++count;}
37 virtual ~B() {--count;}
40 int B::count member in class:B
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_rwlock_hg.stderr.exp1 Total error count is below threshold.
/external/chromium_org/v8/test/mjsunit/
H A Darguments-enum.js29 var count = 0;
31 count++;
32 return count;
38 var count = 0;
40 count++;
41 return count;
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
H A Dshared_ptr_Y.pass.cpp22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count member in class:A
45 static int count; member in struct:C
52 int C::count = 0; member in class:C
[all...]
/external/chromium_org/base/
H A Dbarrier_closure_unittest.cc12 void Increment(int* count) { (*count)++; } argument
15 int count = 0; local
16 base::Closure doneClosure(base::Bind(&Increment, base::Unretained(&count)));
19 EXPECT_EQ(1, count);
23 int count = 0; local
24 base::Closure doneClosure(base::Bind(&Increment, base::Unretained(&count)));
27 EXPECT_EQ(0, count);
30 EXPECT_EQ(0, count);
33 EXPECT_EQ(1, count);
[all...]
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/
H A DAB.h19 explicit A(int id) : id_(id) {++count;}
20 A(const A& a) : id_(a.id_) {++count;}
21 virtual ~A() {assert(id_ >= 0); id_ = -1; --count;}
23 static int count; member in class:A
26 int A::count = 0; member in class:A
32 explicit B(int id) : A(id) {++count;}
33 B(const B& a) : A(a) {++count;}
34 virtual ~B() {--count;}
36 static int count; member in class:B
39 int B::count member in class:B
[all...]
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/
H A Dctor_char.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
H A Dctor_wchar_t.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.messages/locale.messages/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.time/locale.time.get/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/localization/locale.categories/category.time/locale.time.put/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : F(refs) {++count;}
30 ~my_facet() {--count;}
33 int my_facet::count = 0; member in class:my_facet
39 assert(my_facet::count == 1);
41 assert(my_facet::count == 0);
44 assert(my_facet::count == 1);
47 assert(my_facet::count == 1);
49 assert(my_facet::count == 1);
51 assert(my_facet::count
[all...]
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke_void_0.pass.cpp23 int count = 0; variable
27 ++count;
32 void operator()() {++count;}
38 int save_count = count;
43 assert(count == save_count+1);
44 save_count = count;
51 assert(count == save_count+1);
52 save_count = count;
59 assert(count == save_count+1);
60 save_count = count;
[all...]

Completed in 359 milliseconds

1234567891011>>