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 151 llvm::SmallPtrSet<const Type*, 4> RecordsBeingLaidOut;
361 return RecordsBeingLaidOut.empty();
364 return RecordsBeingLaidOut.count(Ty);
CodeGenTypes.cpp 337 if (!RecordsBeingLaidOut.insert(Ty).second) {
367 RecordsBeingLaidOut.erase(Ty);
372 if (RecordsBeingLaidOut.empty())
685 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
703 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
704 assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
714 if (RecordsBeingLaidOut.empty())

Completed in 376 milliseconds