Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Name

50     /// \brief Describes a module, including its file name and dependencies.
57 /// \brief The name of the global index file.
192 // File name.
294 bool GlobalModuleIndex::lookupIdentifier(StringRef Name, HitSet &Hits) {
305 IdentifierIndexTable::iterator Known = Table.find(Name);
321 // Look for the module in the global module index based on the module name.
322 StringRef Name = File->ModuleName;
323 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name);
435 static void emitBlockID(unsigned ID, const char *Name,
442 // Emit the block name if present.
443 if (!Name || Name[0] == 0) return;
445 while (*Name)
446 Record.push_back(*Name++);
450 static void emitRecordID(unsigned ID, const char *Name,
455 while (*Name)
456 Record.push_back(*Name++);
598 // Retrieve the imported file name.
718 // File name
719 StringRef Name(M->first->getName());
720 Record.push_back(Name.size());
721 Record.append(Name.begin(), Name.end());
849 // Rename the newly-written index file to the proper name.