Searched refs:itest_class (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/intrusive/perf/ |
D | tree_perf_test.cpp | 39 struct itest_class //The object for intrusive containers struct 142 typedef set< itest_class<true, SetHook> > Set; in test_insert_search() 148 typedef avl_set< itest_class<true, AvlSetHook> > AvlSet; in test_insert_search() 154 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 161 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 168 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 175 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 181 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 188 typedef sg_set< itest_class<true, BsSetHook> > SgSet; in test_insert_search() 195 typedef sg_set< itest_class<true, BsSetHook>, floating_point<false> > SgSet; in test_insert_search()
|
D | perf_list.cpp | 45 struct itest_class //The object for intrusive containers struct 48 itest_class() {} in itest_class() argument 49 itest_class(int i) : test_class<BigSize>(i) {} in itest_class() function 66 typedef list<itest_class<BigSize, LinkMode>, constant_time_size<false> > type;
|
/third_party/boost/libs/intrusive/doc/ |
D | intrusive.qbk | 3558 * 3 intrusive lists holding a class named `itest_class`, 3560 The `itest_class` objects will be tightly packed in a `std::vector<itest_class>` object. 3562 * `std::list<test_class>`, where `test_class` is exactly the same as `itest_class`, 3571 Both `test_class` and `itest_class` are templatized classes that can be configured with 3574 the definitions of `test_class` and `itest_class` classes, and some other 3580 As we can see, `test_class` is a very simple class holding an `int`. `itest_class` 3670 Values (`test_class` and `itest_class`) and lists are created as explained in the 3744 `sort(Pred pred)`. Values (`test_class` and `itest_class`) and lists are created as explained in the 3826 Values (`test_class` and `itest_class`) and lists are created as explained in
|