Searched refs:Immovable (Results 1 – 3 of 3) sorted by relevance
148 struct Immovable { struct149 Immovable(const Immovable &) = default;150 Immovable(Immovable &&) = delete;154 NegativeImmovableParameter(Immovable I) : I_(I) {} in NegativeImmovableParameter()155 Immovable I_;
408 struct Immovable { struct415 ~Immovable() { in ~Immovable() argument424 Immovable(Immovable&& other) = delete;427 unsigned Immovable::Constructions = 0;428 unsigned Immovable::Destructions = 0;434 Optional<Immovable> A; in TEST()435 Immovable::ResetCounts(); in TEST()440 EXPECT_EQ(0u, Immovable::Destructions); in TEST()444 Immovable::ResetCounts(); in TEST()445 Optional<Immovable> A{in_place, 4}; in TEST()[all …]
359 struct Immovable { struct360 Immovable() {} in Immovable() argument361 Immovable(Immovable&&) = delete; // will disable the other special members367 MoveOnly(const Immovable&) : i(0) {} in MoveOnly()390 StringMapEntry<MoveOnly>::Create(Key, Allocator, Immovable()) in TEST_F()