• Home
  • Raw
  • Download

Lines Matching refs:Idx

174       unsigned Idx = 0;  in GlobalModuleIndex()  local
175 unsigned ID = Record[Idx++]; in GlobalModuleIndex()
185 Modules[ID].Size = Record[Idx++]; in GlobalModuleIndex()
186 Modules[ID].ModTime = Record[Idx++]; in GlobalModuleIndex()
189 unsigned NameLen = Record[Idx++]; in GlobalModuleIndex()
190 Modules[ID].FileName.assign(Record.begin() + Idx, in GlobalModuleIndex()
191 Record.begin() + Idx + NameLen); in GlobalModuleIndex()
192 Idx += NameLen; in GlobalModuleIndex()
195 unsigned NumDeps = Record[Idx++]; in GlobalModuleIndex()
197 Record.begin() + Idx, in GlobalModuleIndex()
198 Record.begin() + Idx + NumDeps); in GlobalModuleIndex()
199 Idx += NumDeps; in GlobalModuleIndex()
202 assert(Idx == Record.size() && "More module info?"); in GlobalModuleIndex()
553 unsigned Idx = 0, N = Record.size(); in loadModuleFile() local
554 while (Idx < N) { in loadModuleFile()
558 ++Idx; in loadModuleFile()
561 ++Idx; in loadModuleFile()
564 off_t StoredSize = (off_t)Record[Idx++]; in loadModuleFile()
565 time_t StoredModTime = (time_t)Record[Idx++]; in loadModuleFile()
568 unsigned Length = Record[Idx++]; in loadModuleFile()
569 SmallString<128> ImportedFile(Record.begin() + Idx, in loadModuleFile()
570 Record.begin() + Idx + Length); in loadModuleFile()
571 Idx += Length; in loadModuleFile()
832 explicit GlobalIndexIdentifierIterator(IdentifierIndexTable &Idx) { in GlobalIndexIdentifierIterator() argument
833 Current = Idx.key_begin(); in GlobalIndexIdentifierIterator()
834 End = Idx.key_end(); in GlobalIndexIdentifierIterator()