Home
last modified time | relevance | path

Searched defs:MoveOnly (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
DF.pass.cpp76 class MoveOnly class
80 MoveOnly() {} in MoveOnly() function in MoveOnly
81 MoveOnly(MoveOnly&&) {} in MoveOnly() function in MoveOnly
83 void operator()(MoveOnly&&) in operator ()() argument
/external/llvm/unittests/ADT/
DOptionalTest.cpp172 struct MoveOnly { struct
173 static unsigned MoveConstructions;
174 static unsigned Destructions;
175 static unsigned MoveAssignments;
176 int val;
177 explicit MoveOnly(int val) : val(val) { in MoveOnly() function
179 MoveOnly(MoveOnly&& other) { in MoveOnly() argument
183 MoveOnly &operator=(MoveOnly&& other) { in operator =()
188 ~MoveOnly() { in ~MoveOnly()
191 static void ResetCounts() { in ResetCounts()
DStringMapTest.cpp259 struct MoveOnly { struct
260 int i;
261 MoveOnly(int i) : i(i) {} in MoveOnly() argument
262 MoveOnly(MoveOnly &&RHS) : i(RHS.i) {} in MoveOnly() argument
263 MoveOnly &operator=(MoveOnly &&RHS) { in operator =()
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
DUTypes.fail.cpp25 class MoveOnly class
32 explicit MoveOnly(int data = 1) : data_(data) {} in MoveOnly() function in MoveOnly
33 MoveOnly(MoveOnly&& x) in MoveOnly() function in MoveOnly
/external/libcxx/test/thread/thread.mutex/thread.once/thread.once.callonce/
Dcall_once.pass.cpp134 class MoveOnly class
138 MoveOnly() {} in MoveOnly() function in MoveOnly
139 MoveOnly(MoveOnly&&) {} in MoveOnly() argument
141 void operator()(MoveOnly&&) in operator ()() argument
/external/libcxx/test/utilities/tuple/tuple.tuple/
DMoveOnly.h26 MoveOnly(MoveOnly&& x) in MoveOnly() function
/external/libcxx/test/containers/
DMoveOnly.h26 MoveOnly(MoveOnly&& x) in MoveOnly() function
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp19.cpp3 struct MoveOnly { struct
/external/clang/test/SemaCXX/
Dblocks.cpp73 class MoveOnly { class
Drval-references.cpp73 struct MoveOnly { struct
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
Dp3-0x.cpp115 struct MoveOnly { struct
/external/clang/test/CXX/special/class.copy/
Dimplicit-move.cpp231 struct MoveOnly { struct