Home | History | Annotate | Download | only in Serialization

Lines Matching defs:Name

49     /// \brief Describes a module, including its file name and dependencies.
56 /// \brief The name of the global index file.
191 // File name.
293 bool GlobalModuleIndex::lookupIdentifier(StringRef Name, HitSet &Hits) {
304 IdentifierIndexTable::iterator Known = Table.find(Name);
320 // Look for the module in the global module index based on the module name.
321 StringRef Name = File->ModuleName;
322 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name);
431 static void emitBlockID(unsigned ID, const char *Name,
438 // Emit the block name if present.
439 if (!Name || Name[0] == 0) return;
441 while (*Name)
442 Record.push_back(*Name++);
446 static void emitRecordID(unsigned ID, const char *Name,
451 while (*Name)
452 Record.push_back(*Name++);
595 // Retrieve the imported file name.
715 // File name
716 StringRef Name(M->first->getName());
717 Record.push_back(Name.size());
718 Record.append(Name.begin(), Name.end());
846 // Rename the newly-written index file to the proper name.