Lines Matching refs:GetId
68 uint16_t GetId(void) const { return mId; } in GetId() function
106 VerifyOrQuit(aList->ContainsMatching(argEntry->GetId())); in VerifyLinkedListContent()
114 VerifyOrQuit(aList->FindMatchingWithPrev(prev, argEntry->GetId()) == argEntry); in VerifyLinkedListContent()
180 VerifyOrQuit(list.FindMatchingWithPrev(prev, c.GetId()) == &c); in TestLinkedList()
184 VerifyOrQuit(list.FindMatchingWithPrev(prev, a.GetId()) == &a); in TestLinkedList()
186 VerifyOrQuit(list.FindMatchingWithPrev(prev, kAlphaType, b.GetId()) == &b); in TestLinkedList()
188 …VerifyOrQuit(list.FindMatchingWithPrev(prev, e.GetId()) == nullptr, "succeeded for a missing entry… in TestLinkedList()
243 VerifyOrQuit(list.RemoveMatching(c.GetId()) == &c); in TestLinkedList()
246 VerifyOrQuit(list.RemoveMatching(c.GetId()) == nullptr, "succeeded for missing entry"); in TestLinkedList()
249 VerifyOrQuit(list.RemoveMatching(d.GetId()) == &d); in TestLinkedList()
258 VerifyOrQuit(list.FindMatching(c.GetId()) == nullptr, "succeeded when empty"); in TestLinkedList()