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

  /external/clang/lib/Basic/
FileManager.cpp 182 void FileManager::addStatCache(FileSystemStatCache *statCache,
184 assert(statCache && "No stat cache provided?");
185 if (AtBeginning || StatCache.get() == 0) {
186 statCache->setNextStatCache(StatCache.take());
187 StatCache.reset(statCache);
191 FileSystemStatCache *LastCache = StatCache.get();
195 LastCache->setNextStatCache(statCache);
198 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
    [all...]
  /external/clang/include/clang/Basic/
FileManager.h 149 llvm::OwningPtr<FileSystemStatCache> StatCache;
167 /// \param statCache the new stat cache to install. Ownership of this
173 void addStatCache(FileSystemStatCache *statCache, bool AtBeginning = false);
176 void removeStatCache(FileSystemStatCache *statCache);
  /external/clang/lib/Frontend/
CacheTokens.cpp 551 StatListener *StatCache = new StatListener(PW.getPM());
552 PP.getFileManager().addStatCache(StatCache, /*AtBeginning=*/true);
561 PP.getFileManager().removeStatCache(StatCache);
  /external/clang/include/clang/Serialization/
ASTReader.h 423 void *StatCache;
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 417 milliseconds