Searched refs:FileIndex (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
H A DDeltaTree.h40 int getDeltaAt(unsigned FileIndex) const;
44 /// into the current DeltaTree at offset FileIndex.
45 void AddDelta(unsigned FileIndex, int Delta);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DDeltaTree.cpp25 /// DeltaTree implements a key/value mapping from FileIndex to Delta, allowing
26 /// fast lookup by FileIndex. However, an added (important) bonus is that it
105 /// DoInsertion - Do an insertion of the specified FileIndex/Delta pair into
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
180 /// DoInsertion - Do an insertion of the specified FileIndex/Delta pair into
184 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, argument
189 // Find the insertion point, the first delta whose index is >= FileIndex.
191 while (i != e && FileIndex > getValue(i).FileLoc)
196 if (i != e && getValue(i).FileLoc == FileIndex) {
206 // specified index is > FileIndex
455 AddDelta(unsigned FileIndex, int Delta) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h122 bool hasFileAtIndex(uint64_t FileIndex) const;
127 getFileNameByIndex(uint64_t FileIndex, StringRef CompDir,
252 bool hasFileAtIndex(uint64_t FileIndex) const {
253 return Prologue.hasFileAtIndex(FileIndex);
265 bool getFileNameByIndex(uint64_t FileIndex, StringRef CompDir, argument
268 return Prologue.getFileNameByIndex(FileIndex, CompDir, Kind, Result);
300 getSourceByIndex(uint64_t FileIndex,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp73 bool DWARFDebugLine::Prologue::hasFileAtIndex(uint64_t FileIndex) const {
78 return FileIndex < FileNames.size();
79 return FileIndex != 0 && FileIndex <= FileNames.size();
1329 Optional<StringRef> DWARFDebugLine::LineTable::getSourceByIndex(uint64_t FileIndex, argument
1331 if (Kind == FileLineInfoKind::None || !Prologue.hasFileAtIndex(FileIndex))
1333 const FileNameEntry &Entry = Prologue.getFileNameEntry(FileIndex);
1348 uint64_t FileIndex, StringRef CompDir, FileLineInfoKind Kind,
1350 if (Kind == FileLineInfoKind::None || !hasFileAtIndex(FileIndex))
1352 const FileNameEntry &Entry = getFileNameEntry(FileIndex);
1347 getFileNameByIndex( uint64_t FileIndex, StringRef CompDir, FileLineInfoKind Kind, std::string &Result, sys::path::Style Style) const argument
[all...]
H A DDWARFVerifier.cpp770 uint32_t FileIndex = 1; local
779 << "].prologue.file_names[" << FileIndex
787 FileIndex, CU->getCompilationDir(),
793 FullPathMap[FullPath] = FileIndex;
794 else if (It->second != FileIndex) {
798 << "].prologue.file_names[" << FileIndex
802 FileIndex++;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp317 // Given a filename, FileIndex picks the best matching file from the underlying
328 class FileIndex { class in namespace:clang::tooling::__anon1133
330 FileIndex(std::vector<std::string> Files) function in class:clang::tooling::__anon1133::FileIndex
511 // If no match, looks up a proxy file in FileIndex and transfers its
544 FileIndex Index;
/netbsd-current/external/mit/libuv/dist/src/win/
H A Dwinapi.h4232 ULONG FileIndex; member in struct:_FILE_DIRECTORY_INFORMATION
4246 ULONG FileIndex; member in struct:_FILE_BOTH_DIR_INFORMATION

Completed in 212 milliseconds