Home
last modified time | relevance | path

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

/third_party/flutter/skia/tests/
DTArrayTest.cpp107 struct MoveOnlyInt { in test_swap() struct
108 MoveOnlyInt(int i) : fInt(i) {} in test_swap() function
109 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() function
110 bool operator==(int i) { return fInt == i; } in test_swap()
111 int fInt; in test_swap()
/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()