HomeSort by: relevance | last modified time | path
    Searched defs:FieldWidth (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
OSLog.cpp 27 Optional<const Expr *> FieldWidth;
121 ArgsData.back().FieldWidth = Args[FS.getFieldWidth().getArgIndex()];
144 if (Data.FieldWidth) {
145 CharUnits Size = Ctx.getTypeSizeInChars((*Data.FieldWidth)->getType());
146 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.FieldWidth,
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 73 UINTN FieldWidth;
987 while (Item->Item.Index < Item->FieldWidth) {
997 if (Item->FieldWidth == (UINTN) -1) {
998 Item->FieldWidth = Len;
1009 for (i=Item->Width; i < Item->FieldWidth; i+=1) {
1027 for (i=Item->Width; i < Item->FieldWidth; i+=1) {
1105 Item.FieldWidth = (UINTN) -1;
1143 Item.WidthParse = &Item.FieldWidth;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
FormatString.h 400 OptionalAmount FieldWidth;
437 return FieldWidth;
449 FieldWidth = Amt;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 5224 const int FieldWidth = ELFT::Is64Bits ? 18 : 10;
5227 OS << " " << right_justify("Start", FieldWidth) << " "
5228 << right_justify("End", FieldWidth) << " "
5229 << right_justify("Page Offset", FieldWidth) << '\n';
5231 OS << " " << format_hex(Mapping.Start, FieldWidth) << " "
5232 << format_hex(Mapping.End, FieldWidth) << " "
5233 << format_hex(Mapping.Offset, FieldWidth) << "\n "
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 423 const size_t FieldWidth = computeFieldWidth(FS);
431 Size += std::max(FieldWidth, (size_t)1);
443 Size += std::max(FieldWidth, Precision);
454 Size += std::max(FieldWidth, 1 /* integer part */ +
463 std::max(FieldWidth,
473 std::max(FieldWidth,
482 Size += FieldWidth;
487 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
537 size_t FieldWidth = 0;
539 FieldWidth = FW.getConstantAmount()
    [all...]

Completed in 43 milliseconds