Lines Matching refs:Entry

187     struct Entry : public Unequatable<Entry>  in TestArrayCopyAndFindMatching()  struct
189 Entry(void) = default; in TestArrayCopyAndFindMatching()
191 Entry(const char *aName, uint16_t aYear) in TestArrayCopyAndFindMatching() function
197 …bool operator==(const Entry &aOther) const { return (mName == aOther.mName) && (mYear == aOther.mY… in TestArrayCopyAndFindMatching() argument
237 Entry ps1("PS", 1994); in TestArrayCopyAndFindMatching()
238 Entry ps2("PS2", 1999); in TestArrayCopyAndFindMatching()
239 Entry ps3("PS3", 2006); in TestArrayCopyAndFindMatching()
240 Entry ps4("PS4", 2013); in TestArrayCopyAndFindMatching()
241 Entry ps5("PS5", 2020); in TestArrayCopyAndFindMatching()
243 Array<Entry, kMaxSize> array1; in TestArrayCopyAndFindMatching()
244 Array<Entry, kMaxSize> array2; in TestArrayCopyAndFindMatching()
245 Array<Entry, kMaxSize> array3(array1); in TestArrayCopyAndFindMatching()
280 Array<Entry, kMaxSize> array4(array2); in TestArrayCopyAndFindMatching()
293 for (const Entry &entry : array2) in TestArrayCopyAndFindMatching()
295 Entry *match; in TestArrayCopyAndFindMatching()
319 for (const Entry &entryToRemove : array1) in TestArrayCopyAndFindMatching()
321 Entry *match; in TestArrayCopyAndFindMatching()
332 for (const Entry &entry : array2) in TestArrayCopyAndFindMatching()
348 for (const Entry &entry : array2) in TestArrayCopyAndFindMatching()
367 for (const Entry &entry : array2) in TestArrayCopyAndFindMatching()
387 for (const Entry &entry : array3) in TestArrayCopyAndFindMatching()
394 for (const Entry &entry : array2) in TestArrayCopyAndFindMatching()