Home
last modified time | relevance | path

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

/external/skia/tests/
DTArrayTest.cpp107 struct MoveOnlyInt { in test_swap() struct
108 MoveOnlyInt(int i) : fInt(i) {} in test_swap() argument
109 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument
114 SkTArray<MoveOnlyInt> moi; in test_swap()
115 SkSTArray< 5, MoveOnlyInt> moi5; in test_swap()
116 SkSTArray<10, MoveOnlyInt> moi10; in test_swap()
117 SkSTArray<20, MoveOnlyInt> moi20; in test_swap()
118 SkTArray<MoveOnlyInt>* arraysMoi[] = { &moi, &moi5, &moi10, &moi20 }; in test_swap()