Lines Matching refs:First
55 // Check that First and Last are both null or both non-null.
56 return (First == nullptr) == (Last == nullptr);
62 if (Other.First == nullptr && Other.Last == nullptr)
66 if (First)
67 Last->NextInContext = Other.First;
69 First = Other.First;
73 for (auto *StolenRecord = Other.First; StolenRecord != nullptr;
78 Other.First = nullptr;
84 if (!First) {
85 First = Record;
96 for (APIRecord *Curr = First; Curr != Record; Curr = Curr->NextInContext)
102 First = Record->NextInContext;
157 for (const auto *Child = RecordAsCtx->First; Child != nullptr;