Home
last modified time | relevance | path

Searched defs:counting_value (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/geometry/index/test/
Dvarray_test.hpp56 class counting_value class
61 explicit counting_value(size_t a = 0, size_t b = 0) : aa(a), bb(b) { ++c(); } in counting_value() function in counting_value
62 counting_value(counting_value const& v) : aa(v.aa), bb(v.bb) { ++c(); } in counting_value() function in counting_value
63counting_value(BOOST_RV_REF(counting_value) p) : aa(p.aa), bb(p.bb) { p.aa = 0; p.bb = 0; ++c(); }… in counting_value() function in counting_value
Dvarray_old.cpp51 class counting_value class
54 explicit counting_value(int a = 0) : aa(a) { ++c(); } in counting_value() function in counting_value
55 counting_value(counting_value const& v) : aa(v.aa) { ++c(); } in counting_value() function in counting_value
/third_party/boost/libs/container/test/
Dstatic_vector_test.hpp59 class counting_value class
64 explicit counting_value(int a = 0, int b = 0) : aa(a), bb(b) { ++c(); } in counting_value() function in counting_value
65 counting_value(counting_value const& v) : aa(v.aa), bb(v.bb) { ++c(); } in counting_value() function in counting_value
66counting_value(BOOST_RV_REF(counting_value) p) : aa(p.aa), bb(p.bb) { p.aa = 0; p.bb = 0; ++c(); }… in counting_value() function in counting_value
/third_party/boost/libs/geometry/index/test/rtree/
Dtest_rtree.hpp411 struct counting_value struct
413 counting_value() { counter()++; } in counting_value() function
414 counting_value(Indexable const& i) : indexable(i) { counter()++; } in counting_value() argument
415 counting_value(counting_value const& c) : indexable(c.indexable) { counter()++; } in counting_value() function
416 ~counting_value() { counter()--; } in ~counting_value() argument
425 struct indexable< counting_value<Indexable> > argument