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;
324 return RecordsBeingLaidOut.empty();
327 return RecordsBeingLaidOut.count(Ty);
CodeGenTypes.cpp 326 if (!RecordsBeingLaidOut.insert(Ty).second) {
356 RecordsBeingLaidOut.erase(Ty);
361 if (RecordsBeingLaidOut.empty())
675 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
693 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
694 assert(EraseResult && "struct not in RecordsBeingLaidOut set?");
704 if (RecordsBeingLaidOut.empty())

Completed in 450 milliseconds