Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DEncoding.h63 unsigned TotalWidth = 0; in columnWidthWithTabs() local
68 return TotalWidth + columnWidth(Tail, Encoding); in columnWidthWithTabs()
69 TotalWidth += columnWidth(Tail.substr(0, TabPos), Encoding); in columnWidthWithTabs()
71 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth; in columnWidthWithTabs()
H A DFormatToken.cpp296 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces. in precomputeFormattingInfos()
299 Format.TotalWidth += Format.ColumnSizes[i]; in precomputeFormattingInfos()
313 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1) in precomputeFormattingInfos()
324 if (Format.TotalWidth <= RemainingCharacters || Format.Columns == 1) { in getColumnFormat()
H A DFormatToken.h899 unsigned TotalWidth; member
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangOptions.h677 static constexpr storage_type TotalWidth = 0 variable
681 static_assert(TotalWidth <= StorageBitSize, "Too short type for FPOptions");