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

  /external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp 11 template<typename T> struct MoveAssign {
74 template struct MoveAssign<A2>; // expected-note {{here}}
87 template struct MoveAssign<B1>; // expected-note {{here}}
89 template struct MoveAssign<B2>; // expected-note {{here}}
91 template struct MoveAssign<B3>;
98 template struct MoveAssign<C1>; // expected-note {{here}}
129 template struct MoveAssign<D2>; // expected-note {{here}}
132 template struct MoveAssign<D4>; // expected-note {{here}}
135 template struct MoveAssign<D6>; // expected-note {{here}}
138 template struct MoveAssign<D7>; // expected-note {{here}
    [all...]
  /external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
move.pass.cpp 79 struct MoveAssign {
83 MoveAssign(int v) : value(v) {}
84 MoveAssign(MoveAssign &&o) : value(o.value) {
88 MoveAssign &operator=(MoveAssign &&o) {
97 int MoveAssign::move_construct = 0;
98 int MoveAssign::move_assign = 0;
330 using V = std::variant<int, MoveAssign, unsigned>;
331 V v1(std::in_place_type<MoveAssign>, 43)
    [all...]
  /external/llvm/unittests/Support/
RegexTest.cpp 149 TEST_F(RegexTest, MoveAssign) {
  /external/perfetto/src/profiling/memory/
interner_unittest.cc 85 TEST(InternerStringTest, MoveAssign) {
  /external/libchrome/base/
optional.h 252 MoveAssign(std::move(other));
265 void MoveAssign(OptionalBase<U>&& other) {
573 MoveAssign(std::move(other));
700 using internal::OptionalBase<T>::MoveAssign;
  /external/perfetto/include/perfetto/base/
optional.h 231 MoveAssign(std::move(other));
244 void MoveAssign(OptionalBase<U>&& other) {
558 MoveAssign(std::move(other));
679 using internal::OptionalBase<T>::MoveAssign;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
RegexTest.cpp 149 TEST_F(RegexTest, MoveAssign) {
  /external/pdfium/core/fxcrt/
retain_ptr_unittest.cpp 191 TEST(RetainPtr, MoveAssign) {
  /external/webrtc/webrtc/system_wrappers/source/
scoped_vector_unittest.cc 235 TEST(ScopedVectorTest, MoveAssign) {
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 1251 milliseconds