Home
last modified time | relevance | path

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

/system/libbase/
Dresult_test.cpp423 struct MyData { struct
424 const int data;
425 static int copy_constructed;
426 static int move_constructed;
427 explicit MyData(int d) : data(d) {} in MyData() function
428 MyData(const MyData& other) : data(other.data) { copy_constructed++; } in MyData() function
429 MyData(MyData&& other) : data(other.data) { move_constructed++; } in MyData() function