HomeSort by relevance Sort by last modified time
    Searched refs:Immovable (Results 1 - 4 of 4) sorted by null

  /external/llvm/unittests/ADT/
OptionalTest.cpp 327 struct Immovable {
331 explicit Immovable(int val) : val(val) {
334 ~Immovable() {
343 Immovable(Immovable&& other) = delete;
346 unsigned Immovable::Constructions = 0;
347 unsigned Immovable::Destructions = 0;
350 Optional<Immovable> A;
351 Immovable::ResetCounts();
355 EXPECT_EQ(1u, Immovable::Constructions)
    [all...]
StringMapTest.cpp 287 struct Immovable {
288 Immovable() {}
289 Immovable(Immovable&&) = delete; // will disable the other special members
295 MoveOnly(const Immovable&) : i(0) {}
317 StringMapEntry<MoveOnly>::Create(Key, Immovable())
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
OptionalTest.cpp 328 struct Immovable {
332 explicit Immovable(int val) : val(val) {
335 ~Immovable() {
344 Immovable(Immovable&& other) = delete;
347 unsigned Immovable::Constructions = 0;
348 unsigned Immovable::Destructions = 0;
351 Optional<Immovable> A;
352 Immovable::ResetCounts();
356 EXPECT_EQ(1u, Immovable::Constructions)
    [all...]
StringMapTest.cpp 317 struct Immovable {
318 Immovable() {}
319 Immovable(Immovable&&) = delete; // will disable the other special members
325 MoveOnly(const Immovable&) : i(0) {}
347 StringMapEntry<MoveOnly>::Create(Key, Immovable())

Completed in 504 milliseconds