Home
last modified time | relevance | path

Searched refs:FieldWidth (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DOSLog.cpp28 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 DScanfFormatString.cpp450 FieldWidth = OptionalAmount(OptionalAmount::Constant, in fixType()
536 FieldWidth.toString(os); in toString()
H A DPrintfFormatString.cpp923 FieldWidth.toString(os); in toString()
1122 if (FieldWidth.getHowSpecified() == OptionalAmount::NotSpecified) in hasValidFieldWidth()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DFormatString.h413 OptionalAmount FieldWidth; variable
450 return FieldWidth; in getFieldWidth()
462 FieldWidth = Amt; in setFieldWidth()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp431 uint32_t FieldWidth) { in dumpSectionContrib() argument
442 fmt_align(NameInsert, AlignStyle::Left, FieldWidth + 2)); in dumpSectionContrib()
443 AutoIndent Indent(P, FieldWidth + 2); in dumpSectionContrib()
451 uint32_t FieldWidth) { in dumpSectionContrib() argument
745 size_t FieldWidth = std::max(LongestNamespace, LongestTypeLeafKind); in dumpUdtStats() local
759 uint32_t TableWidth = FieldWidth + 3 + CD + 2 + SD + 1; in dumpUdtStats()
762 fmt_align("Record Kind", AlignStyle::Right, FieldWidth), in dumpUdtStats()
770 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats()
776 fmt_align("Total (S_UDT)", AlignStyle::Right, FieldWidth), in dumpUdtStats()
796 fmt_align(Label, AlignStyle::Right, FieldWidth), in dumpUdtStats()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp865 const size_t FieldWidth = computeFieldWidth(FS); in HandlePrintfSpecifier() local
873 Size += std::max(FieldWidth, (size_t)1); in HandlePrintfSpecifier()
885 Size += std::max(FieldWidth, Precision); in HandlePrintfSpecifier()
896 Size += std::max(FieldWidth, 1 /* integer part */ + in HandlePrintfSpecifier()
905 std::max(FieldWidth, in HandlePrintfSpecifier()
915 std::max(FieldWidth, in HandlePrintfSpecifier()
924 Size += FieldWidth; in HandlePrintfSpecifier()
929 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision); in HandlePrintfSpecifier()
979 size_t FieldWidth = 0; in computeFieldWidth() local
981 FieldWidth = FW.getConstantAmount(); in computeFieldWidth()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5473 const int FieldWidth = ELFT::Is64Bits ? 18 : 10; in printCoreNote() local
5476 OS << " " << right_justify("Start", FieldWidth) << " " in printCoreNote()
5477 << right_justify("End", FieldWidth) << " " in printCoreNote()
5478 << right_justify("Page Offset", FieldWidth) << '\n'; in printCoreNote()
5480 OS << " " << format_hex(Mapping.Start, FieldWidth) << " " in printCoreNote()
5481 << format_hex(Mapping.End, FieldWidth) << " " in printCoreNote()
5482 << format_hex(Mapping.Offset, FieldWidth) << "\n " in printCoreNote()