Home
last modified time | relevance | path

Searched refs:CurrentStr (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp667 const char *CurrentStr = ImportFileTable.data(); in printNeededLibraries() local
673 for (size_t StrIndex = 0; CurrentStr < TableEnd; ++StrIndex) { in printNeededLibraries()
674 size_t CurrentLen = strlen(CurrentStr); in printNeededLibraries()
675 CurrentStr += strlen(CurrentStr) + 1; in printNeededLibraries()
686 CurrentStr = ImportFileTable.data(); in printNeededLibraries()
687 for (size_t StrIndex = 0; CurrentStr < TableEnd; in printNeededLibraries()
688 ++StrIndex, CurrentStr += strlen(CurrentStr) + 1) { in printNeededLibraries()
691 OS << " " << left_justify(CurrentStr, BaseWidth) << " "; in printNeededLibraries()
693 OS << CurrentStr << "\n"; in printNeededLibraries()