Searched refs:FieldWidth (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OSLog.cpp | 28 std::optional<const Expr *> FieldWidth; member 122 ArgsData.back().FieldWidth = Args[FS.getFieldWidth().getArgIndex()]; in HandlePrintfSpecifier() 145 if (Data.FieldWidth) { in computeLayout() 146 CharUnits Size = Ctx.getTypeSizeInChars((*Data.FieldWidth)->getType()); in computeLayout() 147 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.FieldWidth, in computeLayout()
|
H A D | ScanfFormatString.cpp | 450 FieldWidth = OptionalAmount(OptionalAmount::Constant, in fixType() 534 FieldWidth.toString(os); in toString()
|
H A D | PrintfFormatString.cpp | 990 FieldWidth.toString(os); in toString() 1205 if (FieldWidth.getHowSpecified() == OptionalAmount::NotSpecified) in hasValidFieldWidth()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | DumpOutputStyle.cpp | 432 uint32_t FieldWidth) { in dumpSectionContrib() argument 443 fmt_align(NameInsert, AlignStyle::Left, FieldWidth + 2)); in dumpSectionContrib() 444 AutoIndent Indent(P, FieldWidth + 2); in dumpSectionContrib() 452 uint32_t FieldWidth) { in dumpSectionContrib() argument 746 size_t FieldWidth = std::max(LongestNamespace, LongestTypeLeafKind); in dumpUdtStats() local 760 uint32_t TableWidth = FieldWidth + 3 + CD + 2 + SD + 1; in dumpUdtStats() 763 fmt_align("Record Kind", AlignStyle::Right, FieldWidth), in dumpUdtStats() 771 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats() 777 fmt_align("Total (S_UDT)", AlignStyle::Right, FieldWidth), in dumpUdtStats() 797 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | FormatString.h | 424 OptionalAmount FieldWidth; variable 461 return FieldWidth; in getFieldWidth() 473 FieldWidth = Amt; in setFieldWidth()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 932 const size_t FieldWidth = computeFieldWidth(FS); in HandlePrintfSpecifier() local 940 Size += std::max(FieldWidth, (size_t)1); in HandlePrintfSpecifier() 952 Size += std::max(FieldWidth, Precision); in HandlePrintfSpecifier() 968 Size += std::max(FieldWidth, 1 /* integer part */ + in HandlePrintfSpecifier() 977 std::max(FieldWidth, in HandlePrintfSpecifier() 987 std::max(FieldWidth, in HandlePrintfSpecifier() 996 Size += FieldWidth; in HandlePrintfSpecifier() 1005 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision); in HandlePrintfSpecifier() 1067 size_t FieldWidth = 0; in computeFieldWidth() local 1069 FieldWidth = FW.getConstantAmount(); in computeFieldWidth() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 5872 const int FieldWidth = ELFT::Is64Bits ? 18 : 10; in printCoreNote() local 5875 OS << " " << right_justify("Start", FieldWidth) << " " in printCoreNote() 5876 << right_justify("End", FieldWidth) << " " in printCoreNote() 5877 << right_justify("Page Offset", FieldWidth) << '\n'; in printCoreNote() 5879 OS << " " << format_hex(Mapping.Start, FieldWidth) << " " in printCoreNote() 5880 << format_hex(Mapping.End, FieldWidth) << " " in printCoreNote() 5881 << format_hex(Mapping.Offset, FieldWidth) << "\n " in printCoreNote()
|