Lines Matching refs:LIVE

277     LIVE = 0x1234,  enumerator
286 Bar() : state(LIVE), my_id(-1) in Bar()
289 Bar( std::size_t _i ) : state(LIVE), my_id(_i) { construction_num++; } in Bar()
291 Bar( const Bar& a_bar ) : state(LIVE) { in Bar()
292 CHECK_FAST(a_bar.state == LIVE); in Bar()
298 CHECK_FAST(state == LIVE); in ~Bar()
305 CHECK_FAST(a_bar.state == LIVE); in operator =()
306 CHECK_FAST(state == LIVE); in operator =()
316 CHECK_FAST(bar1.state == LIVE); in operator ==()
317 CHECK_FAST(bar2.state == LIVE); in operator ==()
372 BarEx() : state(LIVE), my_id(-1), my_tilda_id(-1) in BarEx()
375 BarEx(std::size_t _i) : state(LIVE), my_id(_i), my_tilda_id(my_id^(-1)) in BarEx()
378 BarEx( const BarEx& a_bar ) : state(LIVE) { in BarEx()
379 CHECK_FAST(a_bar.state == LIVE); in BarEx()
389 CHECK_FAST(state == LIVE); in ~BarEx()
396 CHECK_FAST(a_bar.state == LIVE); in operator =()
397 CHECK_FAST(state == LIVE); in operator =()
409 CHECK_FAST(bar1.state == LIVE); in operator ==()
410 CHECK_FAST(bar2.state == LIVE); in operator ==()
795 FooEx() : state(LIVE) { in FooEx()
800 FooEx( const FooEx& item ) : state(LIVE) { in FooEx()
801 CHECK(item.state == LIVE); in FooEx()
810 CHECK(state==LIVE); in ~FooEx()
817 CHECK(item.state==LIVE); in operator =()
818 CHECK(state==LIVE); in operator =()
1210 state_type state = LIVE;
1217 REQUIRE_MESSAGE(state == LIVE, "Destroyed allocator has been used."); in ~allocator()
1223 REQUIRE_MESSAGE(a.state == LIVE, "Destroyed allocator has been used."); in allocator()
1231 REQUIRE_MESSAGE(lhs.state == LIVE, "Destroyed allocator has been used."); in operator ==()
1232 REQUIRE_MESSAGE(rhs.state == LIVE, "Destroyed allocator has been used."); in operator ==()