Searched refs:TotalWidth (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h63 unsigned TotalWidth = 0; local
68 return TotalWidth + columnWidth(Tail, Encoding);
69 TotalWidth += columnWidth(Tail.substr(0, TabPos), Encoding);
71 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth;
H A DFormatToken.cpp266 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces.
269 Format.TotalWidth += Format.ColumnSizes[i];
282 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1)
296 if (I->TotalWidth <= RemainingCharacters || I->Columns == 1) {
H A DFormatToken.h657 unsigned TotalWidth; member in struct:clang::format::CommaSeparatedList::ColumnFormat

Completed in 115 milliseconds