Home
last modified time | relevance | path

Searched defs:NTMove (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
Dmove.pass.cpp57 struct NTMove { struct
58 constexpr NTMove(int v) : value(v) {} in NTMove() function
60 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function
64 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/variant/variant.variant/variant.ctor/
Dmove.pass.cpp49 struct NTMove { struct
50 constexpr NTMove(int v) : value(v) {} in NTMove() function
52 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() argument
56 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument