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

  /external/lzma/CPP/7zip/UI/Common/
UpdateProduce.h 14 int DirIndex;
18 bool ExistOnDisk() const { return DirIndex != -1; }
21 CUpdatePair2(): IsAnti(false), DirIndex(-1), ArcIndex(-1), NewNameIndex(-1) {}
UpdatePair.h 15 int DirIndex;
16 CUpdatePair(): ArcIndex(-1), DirIndex(-1) {}
UpdateProduce.cpp 23 up2.DirIndex = pair.DirIndex;
UpdateCallback.cpp 120 const CDirItem &di = DirItems->Items[up.DirIndex];
123 case kpidPath: prop = DirItems->GetLogPath(up.DirIndex); break;
172 const CDirItem &di = DirItems->Items[up.DirIndex];
173 RINOK(Callback->GetStream(DirItems->GetLogPath(up.DirIndex), false));
188 const UString path = DirItems->GetPhyPath(up.DirIndex);
UpdatePair.cpp 92 int dirIndex = 0, arcIndex = 0;
93 while (dirIndex < numDirItems && arcIndex < numArcItems)
96 int dirIndex2 = dirIndices[dirIndex];
104 pair.DirIndex = dirIndex2;
105 dirIndex++;
119 pair.DirIndex = dirIndex2;
132 dirIndex++;
138 for (; dirIndex < numDirItems; dirIndex++)
142 pair.DirIndex = dirIndices[dirIndex];
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
iphoto_data_provider.h 54 typedef base::hash_map<std::string, FileIndex> DirIndex;
63 DirIndex dir_index_;
66 DirIndex originals_index_;
iphoto_data_provider.cc 121 for (DirIndex::const_iterator dir_it = dir_index_.begin();
132 DirIndex::const_iterator dir_it = dir_index_.find(album);
147 DirIndex::const_iterator dir_it = dir_index_.find(album);
157 DirIndex::const_iterator originals_it = originals_index_.find(album);
164 DirIndex::const_iterator originals_it = originals_index_.find(album);
179 DirIndex::const_iterator originals_it = originals_index_.find(album);
  /external/jhead/
exif.c     [all...]
  /external/llvm/lib/MC/
MCContext.cpp 346 unsigned DirIndex;
348 // For FileNames with no directories a DirIndex of 0 is used.
349 DirIndex = 0;
351 DirIndex = 0;
352 for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) {
353 if (Directory == MCDwarfDirs[DirIndex])
356 if (DirIndex >= MCDwarfDirs.size()) {
361 // The DirIndex is one based, as DirIndex of 0 is used for FileNames wit
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 43 // DirIndex - the index into the list of directory names for this file name.
44 unsigned DirIndex;
48 MCDwarfFile(StringRef name, unsigned dirIndex)
49 : Name(name), DirIndex(dirIndex) {}
57 /// getDirIndex - Get the dirIndex of this MCDwarfFile.
58 unsigned getDirIndex() const { return DirIndex; }

Completed in 92 milliseconds