Home
last modified time | relevance | path

Searched defs:MoveOnlyInt (Results 1 – 2 of 2) 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()
/third_party/skia/m133/tests/
DTArrayTest.cpp220 struct MoveOnlyInt { struct
221 MoveOnlyInt(int i) : fInt(i) {} in MoveOnlyInt() argument
222 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in MoveOnlyInt() function
223 bool operator==(int i) const { return fInt == i; } in operator ==()
224 int fInt;