Lines Matching defs:OutputFormat
101 static OutputFormatTy OutputFormat;
295 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
624 if (OutputFormat == posix && !ArchiveName.empty())
735 if ((OutputFormat == bsd || OutputFormat == posix ||
736 OutputFormat == just_symbols) &&
739 } else if (OutputFormat == sysv) {
756 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64;
759 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64;
762 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64;
769 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64;
772 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64;
775 printFormat = OutputFormat == posix ? "%" PRId64 : "%08" PRId64;
790 if ((OutputFormat == just_symbols ||
791 (UndefinedOnly && MachO && OutputFormat != darwin)) &&
792 OutputFormat != posix) {
800 if (OutputFormat == sysv || !symbolIsDefined(S)) {
801 if (OutputFormat == posix) {
823 // If OutputFormat is darwin or we are printing Mach-O symbols in hex and
825 // nm(1) -m output or hex, else if OutputFormat is darwin or we are
827 // OutputFormat bsd (see below).
828 if ((OutputFormat == darwin || FormatMachOasHex) && (MachO || Obj.isIR())) {
831 } else if (OutputFormat == posix) {
834 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
854 } else if (OutputFormat == sysv) {
2435 OutputFormat = bsd;
2437 OutputFormat = posix;
2439 OutputFormat = sysv;
2441 OutputFormat = darwin;
2443 OutputFormat = just_symbols;
2529 if (OutputFormat == sysv || SizeSort)