Searched refs:MoveOnlyInt (Results 1 – 1 of 1) sorted by relevance
107 struct MoveOnlyInt { in test_swap() struct108 MoveOnlyInt(int i) : fInt(i) {} in test_swap() argument109 MoveOnlyInt(MoveOnlyInt&& that) : fInt(that.fInt) {} in test_swap() argument114 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()