Searched refs:FileIndex (Results 1 – 7 of 7) sorted by relevance
/external/clang/lib/Rewrite/ |
D | DeltaTree.cpp | 106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes); 179 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, in DoInsertion() argument 186 while (i != e && FileIndex > getValue(i).FileLoc) in DoInsertion() 191 if (i != e && getValue(i).FileLoc == FileIndex) { in DoInsertion() 208 Values[i] = SourceDelta::get(FileIndex, Delta); in DoInsertion() 218 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion() 219 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion() 221 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion() 227 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion() 404 int DeltaTree::getDeltaAt(unsigned FileIndex) const { in getDeltaAt() [all …]
|
/external/clang/include/clang/Rewrite/Core/ |
D | DeltaTree.h | 41 int getDeltaAt(unsigned FileIndex) const; 46 void AddDelta(unsigned FileIndex, int Delta);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 232 bool hasFileAtIndex(uint64_t FileIndex) const; 236 bool getFileNameByIndex(uint64_t FileIndex, const char *CompDir, 268 getSourceByIndex(uint64_t FileIndex,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 967 bool DWARFDebugLine::LineTable::hasFileAtIndex(uint64_t FileIndex) const { in hasFileAtIndex() 968 return FileIndex != 0 && FileIndex <= Prologue.FileNames.size(); in hasFileAtIndex() 971 Optional<StringRef> DWARFDebugLine::LineTable::getSourceByIndex(uint64_t FileIndex, in getSourceByIndex() argument 973 if (Kind == FileLineInfoKind::None || !hasFileAtIndex(FileIndex)) in getSourceByIndex() 975 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1]; in getSourceByIndex() 989 bool DWARFDebugLine::LineTable::getFileNameByIndex(uint64_t FileIndex, in getFileNameByIndex() argument 993 if (Kind == FileLineInfoKind::None || !hasFileAtIndex(FileIndex)) in getFileNameByIndex() 995 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1]; in getFileNameByIndex()
|
D | DWARFVerifier.cpp | 598 uint32_t FileIndex = 1; in verifyDebugLineRows() local 607 << "].prologue.file_names[" << FileIndex in verifyDebugLineRows() 615 FileIndex, CU->getCompilationDir(), in verifyDebugLineRows() 621 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows() 622 else if (It->second != FileIndex) { in verifyDebugLineRows() 626 << "].prologue.file_names[" << FileIndex in verifyDebugLineRows() 630 FileIndex++; in verifyDebugLineRows()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 627 bool DWARFDebugLine::LineTable::getFileNameByIndex(uint64_t FileIndex, in getFileNameByIndex() argument 631 if (FileIndex == 0 || FileIndex > Prologue.FileNames.size() || in getFileNameByIndex() 634 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1]; in getFileNameByIndex()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 193 bool getFileNameByIndex(uint64_t FileIndex, const char *CompDir,
|