HomeSort by relevance Sort by last modified time
    Searched refs:count (Results 51 - 75 of 16414) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert02.pass.cpp 23 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 = 0 member in class:B
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move_convert07.fail.cpp 21 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 = 0 member in class:B
    [all...]
move_convert08.fail.cpp 23 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 = 0 member in class:B
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert01.pass.cpp 21 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 = 0 member in class:B
    [all...]
move_convert02.pass.cpp 23 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 = 0 member in class:B
    [all...]
  /external/chromium_org/base/
barrier_closure_unittest.cc 12 void Increment(int* count) { (*count)++; }
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/
AB.h 19 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 = 0 member in class:B
    [all...]
  /external/libcxx/test/localization/locale.categories/category.messages/locale.messages/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.get/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.put/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke_void_0.pass.cpp 23 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...]
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke_void_0.pass.cpp 24 int count = 0; variable
28 ++count;
33 void operator()() {++count;}
39 int save_count = count;
44 assert(count == save_count+1);
45 save_count = count;
52 assert(count == save_count+1);
53 save_count = count;
60 assert(count == save_count+1);
61 save_count = count;
    [all...]
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
pointer04.fail.cpp 23 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 = 0 member in class:B
    [all...]
pointer_deleter05.fail.cpp 23 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 = 0 member in class:B
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/
AB.h 19 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 = 0 member in class:B
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.messages/locale.messages/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/
ctor.pass.cpp 25 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 == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/
ctor.pass.cpp 25 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 == 0)
    [all...]

Completed in 1069 milliseconds

1 23 4 5 6 7 8 91011>>