Searched defs:MoveOnly (Results 1 – 12 of 12) sorted by relevance
76 class MoveOnly class80 MoveOnly() {} in MoveOnly() function in MoveOnly81 MoveOnly(MoveOnly&&) {} in MoveOnly() function in MoveOnly83 void operator()(MoveOnly&&) in operator ()() argument
172 struct MoveOnly { struct173 static unsigned MoveConstructions;174 static unsigned Destructions;175 static unsigned MoveAssignments;176 int val;177 explicit MoveOnly(int val) : val(val) { in MoveOnly() function179 MoveOnly(MoveOnly&& other) { in MoveOnly() argument183 MoveOnly &operator=(MoveOnly&& other) { in operator =()188 ~MoveOnly() { in ~MoveOnly()191 static void ResetCounts() { in ResetCounts()
259 struct MoveOnly { struct260 int i;261 MoveOnly(int i) : i(i) {} in MoveOnly() argument262 MoveOnly(MoveOnly &&RHS) : i(RHS.i) {} in MoveOnly() argument263 MoveOnly &operator=(MoveOnly &&RHS) { in operator =()
25 class MoveOnly class32 explicit MoveOnly(int data = 1) : data_(data) {} in MoveOnly() function in MoveOnly33 MoveOnly(MoveOnly&& x) in MoveOnly() function in MoveOnly
134 class MoveOnly class138 MoveOnly() {} in MoveOnly() function in MoveOnly139 MoveOnly(MoveOnly&&) {} in MoveOnly() argument141 void operator()(MoveOnly&&) in operator ()() argument
26 MoveOnly(MoveOnly&& x) in MoveOnly() function
3 struct MoveOnly { struct
73 class MoveOnly { class
73 struct MoveOnly { struct
115 struct MoveOnly { struct
231 struct MoveOnly { struct