Home
last modified time | relevance | path

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

/third_party/skia/tests/
DTArrayTest.cpp213 struct MoveOnlyInt { in test_swap() struct
214 MoveOnlyInt(int i) : fInt(i) {} in test_swap() function
215 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument
216 bool operator==(int i) { return fInt == i; } in test_swap()
217 int fInt; in test_swap()