Home
last modified time | relevance | path

Searched refs:MoveOnlyInt (Results 1 - 1 of 1) sorted by relevance

/third_party/skia/tests/
H A 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() function
220 SkTArray<MoveOnlyInt> moi; in test_swap()
221 SkSTArray< 5, MoveOnlyInt> moi5; in test_swap()
222 SkSTArray<10, MoveOnlyInt> moi10; in test_swap()
223 SkSTArray<20, MoveOnlyInt> moi20; in test_swap()
224 SkTArray<MoveOnlyInt>* arraysMoi[] = { &moi, &moi5, &moi10, &moi20 }; in test_swap()

Completed in 2 milliseconds