Home
last modified time | relevance | path

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

/external/skia/tests/
DTArrayTest.cpp106 struct MoveOnlyInt { in test_swap() struct
107 MoveOnlyInt(int i) : fInt(i) {} in test_swap() function
108 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument
109 bool operator==(int i) { return fInt == i; } in test_swap()
110 int fInt; in test_swap()