| /freebsd-12.1/contrib/llvm/tools/clang/lib/Format/ |
| H A D | FormatToken.cpp | 241 for (unsigned Columns = 1; Columns <= MaxItems; ++Columns) { in precomputeFormattingInfos() local 243 Format.Columns = Columns; in precomputeFormattingInfos() 244 Format.ColumnSizes.resize(Columns); in precomputeFormattingInfos() 245 MinSizeInColumn.assign(Columns, UINT_MAX); in precomputeFormattingInfos() 251 if (MustBreakBeforeItem[i] || Column == Columns) { in precomputeFormattingInfos() 255 if (Column == Columns - 1) in precomputeFormattingInfos() 267 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces. in precomputeFormattingInfos() 269 for (unsigned i = 0; i < Columns; ++i) in precomputeFormattingInfos() 275 for (unsigned i = 0; i < Columns - 1; ++i) in precomputeFormattingInfos() 283 if (Format.TotalWidth > Style.ColumnLimit && Columns > 1) in precomputeFormattingInfos() [all …]
|
| H A D | FormatToken.h | 637 unsigned Columns; member
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewHTML.cpp | 309 SmallVector<std::string, 4> Columns; in emitColumnLabelsForIndex() local 310 Columns.emplace_back(tag("td", "Filename", "column-entry-bold")); in emitColumnLabelsForIndex() 313 Columns.emplace_back( in emitColumnLabelsForIndex() 315 Columns.emplace_back(tag("td", "Line Coverage", "column-entry-bold")); in emitColumnLabelsForIndex() 318 OS << tag("tr", join(Columns.begin(), Columns.end(), "")); in emitColumnLabelsForIndex() 338 SmallVector<std::string, 8> Columns; in emitFileSummary() local 341 auto AddCoverageTripleToColumn = [&Columns](unsigned Hit, unsigned Total, in emitFileSummary() 357 Columns.emplace_back(tag("td", tag("pre", S), CellClass)); in emitFileSummary() 368 Columns.emplace_back(tag("td", tag("pre", Filename))); in emitFileSummary() 385 OS << tag("tr", join(Columns.begin(), Columns.end(), ""), "light-row-bold"); in emitFileSummary() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.cpp | 48 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator ()() 95 assert(B.Lines.size() == B.Columns.size()); in addLineAndColumnInfo() 101 B.Columns.push_back(CNE); in addLineAndColumnInfo() 116 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty()); in commit() 131 if (auto EC = Writer.writeArray(makeArrayRef(B.Columns))) in commit() 144 Size += B.Columns.size() * sizeof(ColumnNumberEntry); in calculateSerializedSize()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | DependencyFile.cpp | 451 unsigned Columns = 0; in OutputDependencyFile() local 455 if (Columns == 0) { in OutputDependencyFile() 456 Columns += N; in OutputDependencyFile() 457 } else if (Columns + N + 2 > MaxColumns) { in OutputDependencyFile() 458 Columns = N + 2; in OutputDependencyFile() 461 Columns += N + 1; in OutputDependencyFile() 469 Columns += 1; in OutputDependencyFile() 478 if (Columns + (N + 1) + 2 > MaxColumns) { in OutputDependencyFile() 480 Columns = 2; in OutputDependencyFile() 484 Columns += N + 1; in OutputDependencyFile()
|
| H A D | TextDiagnostic.cpp | 332 if (MaxColumns <= Columns) in selectInterestingSourceRegion() 411 unsigned TargetColumns = Columns; in selectInterestingSourceRegion() 498 if (FrontColumnsRemoved+ColumnsKept <= Columns) in selectInterestingSourceRegion() 549 unsigned Columns) { in findEndOfWord() argument 586 Column + PunctWordLength <= Columns || in findEndOfWord() 589 PunctWordLength < Columns/3) in findEndOfWord() 615 unsigned Columns, in printWordWrapped() argument 638 if (Column + WordLength < Columns) { in printWordWrapped() 751 if (Columns) in printDiagnosticMessage() 1222 unsigned Columns = DiagOpts->MessageLength; in emitSnippetAndCaret() local [all …]
|
| /freebsd-12.1/usr.bin/tset/ |
| H A D | tset.c | 70 int Lines, Columns; /* window size */ variable 164 Columns = tgetnum("co"); in main() 171 Lines > 0 && Columns > 0) { in main() 173 win.ws_col = Columns; in main()
|
| H A D | extern.h | 38 extern int Columns, isreset, Lines;
|
| H A D | set.c | 303 for (c = 8; c < Columns; c += 8) { in set_tabs()
|
| /freebsd-12.1/stand/i386/kgzldr/ |
| H A D | crt.s | 33 .set SCR_COL,0x50 # Columns per row 58 movb $SCR_COL,%al # Columns per row 77 movb $SCR_COL,%cl # Columns to clear
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.h | 68 FixedStreamArray<ColumnNumberEntry> Columns; member 113 std::vector<ColumnNumberEntry> Columns; member
|
| /freebsd-12.1/contrib/llvm/lib/Support/Windows/ |
| H A D | Process.inc | 291 unsigned Columns = 0; 294 Columns = csbi.dwSize.X; 295 return Columns; 299 unsigned Columns = 0; 302 Columns = csbi.dwSize.X; 303 return Columns;
|
| /freebsd-12.1/contrib/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 288 int Columns = std::atoi(ColumnsStr); 289 if (Columns > 0) 290 return Columns; 293 unsigned Columns = 0; 299 Columns = ws.ws_col; 302 return Columns;
|
| /freebsd-12.1/tools/test/ppsapi/ |
| H A D | README | 27 Columns:
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/ |
| H A D | TextDiagnostic.h | 75 unsigned Columns, bool ShowColors);
|
| /freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.h | 78 std::vector<SourceColumnEntry> Columns; member
|
| /freebsd-12.1/sys/contrib/edk2/Include/Protocol/ |
| H A D | SimpleTextOut.h | 245 OUT UINTN *Columns,
|
| /freebsd-12.1/stand/i386/btx/btxldr/ |
| H A D | btxldr.S | 52 .set SCR_COL,0x50 # Columns per row
|
| /freebsd-12.1/stand/efi/include/ |
| H A D | eficon.h | 65 OUT UINTN *Columns,
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 281 IO.mapRequired("Columns", Obj.Columns); in mapping() 425 for (const auto &Item : zip(LC.Lines, LC.Columns)) { in toCodeViewSubsection() 597 for (const auto &C : L.Columns) { in fromCodeViewSubsection() 601 Block.Columns.push_back(SCE); in fromCodeViewSubsection()
|
| /freebsd-12.1/contrib/sendmail/contrib/ |
| H A D | mmuegel | 1258 ;# Center $Text assuming the output should be $Columns wide. $Text can span 1264 ;# $Text, $Columns 1271 X local ($_, $Columns) = @_; 1274 X s@^(.*)$@" " x (($Columns - length ($1)) / 2) . $1@eg; 1286 ;# automatically word-wrapped to fit in $Columns. 1300 ;# + If $Columns is 0 no word-wrap is done. This might be useful to still 1313 ;# $String, $Offset, $Offset_Once, $Bullet_Indent, $Columns, $Split_Expr, 1321 X local ($String, $Real_Offset, $Offset_Once, $Bullet_Indent, $Columns, 1338 X # If bad $Columns/$Offset combo or no $Columns make a VERRRYYY wide $Column 1340 X $Chars_Per_Line = 16000 if (($Chars_Per_Line = $Columns - length ($Offset)) <= 0);
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1139 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn); in printCodeViewSymbolSection() 1140 W.printNumber("ColEnd", Entry.Columns[ColumnIndex].EndColumn); in printCodeViewSymbolSection()
|
| /freebsd-12.1/stand/i386/btx/btx/ |
| H A D | btx.S | 95 .set SCR_COL,0x50 # Columns per row
|
| /freebsd-12.1/contrib/tzdata/ |
| H A D | zone1970.tab | 7 # civil timestamps have agreed since 1970. Columns are separated by
|
| /freebsd-12.1/share/misc/ |
| H A D | usb_hid_usages | 1166 0x36 Columns
|