Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DCFGPrinter.h172 unsigned ColNum = 0;
178 ColNum = 0;
183 } else if (ColNum == MaxColumns) { // Wrap lines.
188 ColNum = i - LastSpace;
192 ++ColNum;
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp494 uint32_t ColNum = in findLineTable() local
496 Entries.push_back({StartAddr, FirstLine, ColNum, Group.NameIndex, false}); in findLineTable()
502 ColNum = 0; in findLineTable()
505 ColNum = ColIt->StartColumn; in findLineTable()
508 Entries.push_back({VA, Line, ColNum, Group.NameIndex, false}); in findLineTable()
514 ColNum = (Lines.hasColumnInfo()) ? Group.Columns.back().StartColumn : 0; in findLineTable()
515 Entries.push_back({EndAddr, LastLine, ColNum, Group.NameIndex, true}); in findLineTable()
/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp28 unsigned ColNum = 0; // Record the column number. in escape() local
32 unsigned NumSpaces = Opts.TabSize - (ColNum % Opts.TabSize); in escape()
34 ColNum += NumSpaces; in escape()
38 ColNum = 0; in escape()
40 ++ColNum; in escape()
/llvm-project-15.0.7/clang-tools-extra/clang-query/
H A DQuery.cpp162 auto ColNum = SM.getPresumedColumnNumber(Iter->first.getEnd()); in dumpLocations() local
163 auto LastLineLoc = Iter->first.getEnd().getLocWithOffset(-(ColNum - 1)); in dumpLocations()