Home | History | Annotate | Download | only in Serialization

Lines Matching defs:GlobalModuleIndex

1 //===--- GlobalModuleIndex.cpp - Global Module Index ------------*- C++ -*-===//
10 // This file implements the GlobalModuleIndex class.
18 #include "clang/Serialization/GlobalModuleIndex.h"
127 GlobalModuleIndex::GlobalModuleIndex(FileManager &FileMgr,
310 GlobalModuleIndex::~GlobalModuleIndex() { }
312 std::pair<GlobalModuleIndex *, GlobalModuleIndex::ErrorCode>
313 GlobalModuleIndex::readIndex(FileManager &FileMgr, StringRef Path) {
322 return std::make_pair((GlobalModuleIndex *)0, EC_NotFound);
336 return std::make_pair((GlobalModuleIndex *)0, EC_IOError);
339 return std::make_pair(new GlobalModuleIndex(FileMgr, Buffer.take(), Cursor),
343 void GlobalModuleIndex::getKnownModules(
352 void GlobalModuleIndex::getModuleDependencies(
373 bool GlobalModuleIndex::lookupIdentifier(StringRef Name, HitSet &Hits) {
402 void GlobalModuleIndex::printStats() {
794 GlobalModuleIndex::ErrorCode
795 GlobalModuleIndex::writeIndex(FileManager &FileMgr, StringRef Path) {