Searched refs:RecordsBeingLaidOut (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTypes.h151 llvm::SmallPtrSet<const Type*, 4> RecordsBeingLaidOut; member in class:clang::CodeGen::CodeGenTypes
324 return RecordsBeingLaidOut.empty();
327 return RecordsBeingLaidOut.count(Ty);
H A DCodeGenTypes.cpp326 if (!RecordsBeingLaidOut.insert(Ty).second) {
356 RecordsBeingLaidOut.erase(Ty);
361 if (RecordsBeingLaidOut.empty())
679 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
697 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
698 assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
708 if (RecordsBeingLaidOut.empty())

Completed in 93 milliseconds