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

  /external/libcxx/test/std/utilities/utility/forward/
move.fail.cpp 17 struct move_only { struct
18 move_only() {} function in struct:move_only
19 move_only(move_only&&) = default;
20 move_only& operator=(move_only&&) = default;
23 move_only source() {return move_only();}
24 const move_only csource() {return move_only();}
    [all...]
move.pass.cpp 20 class move_only class
22 move_only(const move_only&);
23 move_only& operator=(const move_only&);
25 move_only(move_only&&) {} function in class:move_only
26 move_only& operator=(move_only&&) {return *this;}
28 move_only() {} function in class:move_only
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/
move.fail.cpp 17 struct move_only { struct
18 move_only() {} function in struct:move_only
19 move_only(move_only&&) = default;
20 move_only& operator=(move_only&&) = default;
23 move_only source() {return move_only();}
24 const move_only csource() {return move_only();}
    [all...]
move.pass.cpp 20 class move_only class
22 move_only(const move_only&);
23 move_only& operator=(const move_only&);
25 move_only(move_only&&) {} function in class:move_only
26 move_only& operator=(move_only&&) {return *this;}
28 move_only() {} function in class:move_only
    [all...]
  /external/clang/test/PCH/
implicitly-deleted.cpp 3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class
5 move_only il;
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 39 class move_only class
41 move_only(const move_only&) = delete;
42 move_only& operator=(const move_only&)= delete;
45 move_only(move_only&&) {++move_only_constructed;} function in class:move_only
46 move_only& operator=(move_only&&) {return *this;}
48 move_only() {++move_only_constructed; function in class:move_only
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 39 class move_only class
41 move_only(const move_only&) = delete;
42 move_only& operator=(const move_only&)= delete;
45 move_only(move_only&&) {++move_only_constructed;} function in class:move_only
46 move_only& operator=(move_only&&) {return *this;}
48 move_only() {++move_only_constructed; function in class:move_only
    [all...]

Completed in 167 milliseconds