Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp67 Last->NextInContext = Other.First; in stealRecordChain()
90 Last->NextInContext = Record; in addToRecordChain()
96 for (APIRecord *Curr = First; Curr != Record; Curr = Curr->NextInContext) in removeFromRecordChain()
100 Prev->NextInContext = Record->NextInContext; in removeFromRecordChain()
102 First = Record->NextInContext; in removeFromRecordChain()
107 Record->NextInContext = nullptr; in removeFromRecordChain()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DAPI.h269 mutable APIRecord *NextInContext = nullptr; member
272 APIRecord *getNextInContext() const { return NextInContext; } in getNextInContext()