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

  /external/clang/lib/Serialization/
GeneratePCH.cpp 36 SemaPtr(0), StatCalls(0), Stream(Buffer), Writer(Stream) {
39 StatCalls = new MemorizeStatCalls();
40 PP.getFileManager().addStatCache(StatCalls, /*AtBeginning=*/false);
52 Writer.WriteAST(*SemaPtr, StatCalls, OutputFile, IsModule, isysroot);
ASTWriter.cpp     [all...]
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 87 llvm::StringMap<struct stat, llvm::BumpPtrAllocator> StatCalls;
92 iterator begin() const { return StatCalls.begin(); }
93 iterator end() const { return StatCalls.end(); }
  /external/clang/unittests/Basic/
FileManagerTest.cpp 28 llvm::StringMap<struct stat, llvm::BumpPtrAllocator> StatCalls;
39 StatCalls[Path] = statBuf;
56 if (StatCalls.count(Path) != 0) {
57 StatBuf = StatCalls[Path];
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 117 StatCalls[Path] = StatBuf;
  /external/clang/include/clang/Serialization/
ASTWriter.h 340 void WriteStatCache(MemorizeStatCalls &StatCalls);
383 void WriteASTCore(Sema &SemaRef, MemorizeStatCalls *StatCalls,
397 /// \param StatCalls the object that cached all of the stat() calls made while
405 void WriteAST(Sema &SemaRef, MemorizeStatCalls *StatCalls,
640 MemorizeStatCalls *StatCalls; // owned by the FileManager

Completed in 1072 milliseconds