HomeSort by relevance Sort by last modified time
    Searched refs:RecordsBeingLaidOut (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/CodeGen/
CodeGenTypes.h 88 /// RecordsBeingLaidOut - This set keeps track of records that we're currently
92 llvm::SmallPtrSet<const Type*, 4> RecordsBeingLaidOut;
243 return RecordsBeingLaidOut.empty();
246 return RecordsBeingLaidOut.count(Ty);
CodeGenTypes.cpp 466 if (!RecordsBeingLaidOut.insert(Ty)) {
497 RecordsBeingLaidOut.erase(Ty);
502 if (RecordsBeingLaidOut.empty())
598 bool InsertResult = RecordsBeingLaidOut.insert(Key); (void)InsertResult;
616 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
617 assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
627 if (RecordsBeingLaidOut.empty())

Completed in 68 milliseconds