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 91 /// RecordsBeingLaidOut - This set keeps track of records that we're currently
95 llvm::SmallPtrSet<const Type*, 4> RecordsBeingLaidOut;
258 return RecordsBeingLaidOut.empty();
261 return RecordsBeingLaidOut.count(Ty);
CodeGenTypes.cpp 497 if (!RecordsBeingLaidOut.insert(Ty)) {
528 RecordsBeingLaidOut.erase(Ty);
533 if (RecordsBeingLaidOut.empty())
651 bool InsertResult = RecordsBeingLaidOut.insert(Key); (void)InsertResult;
668 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
669 assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
679 if (RecordsBeingLaidOut.empty())

Completed in 439 milliseconds