Lines Matching defs:OutputFormat

103 static OutputFormatTy OutputFormat;
297 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
626 if (OutputFormat == posix && !ArchiveName.empty())
737 if ((OutputFormat == bsd || OutputFormat == posix ||
738 OutputFormat == just_symbols) &&
741 } else if (OutputFormat == sysv) {
758 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64;
761 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64;
764 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64;
771 printFormat = OutputFormat == posix ? "%" PRIo64 : "%08" PRIo64;
774 printFormat = OutputFormat == posix ? "%" PRIx64 : "%08" PRIx64;
777 printFormat = OutputFormat == posix ? "%" PRId64 : "%08" PRId64;
792 if ((OutputFormat == just_symbols ||
793 (UndefinedOnly && MachO && OutputFormat != darwin)) &&
794 OutputFormat != posix) {
802 if (OutputFormat == sysv || !symbolIsDefined(S)) {
803 if (OutputFormat == posix) {
825 // If OutputFormat is darwin or we are printing Mach-O symbols in hex and
827 // nm(1) -m output or hex, else if OutputFormat is darwin or we are
829 // OutputFormat bsd (see below).
830 if ((OutputFormat == darwin || FormatMachOasHex) && (MachO || Obj.isIR())) {
833 } else if (OutputFormat == posix) {
836 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
856 } else if (OutputFormat == sysv) {
2437 OutputFormat = bsd;
2439 OutputFormat = posix;
2441 OutputFormat = sysv;
2443 OutputFormat = darwin;
2445 OutputFormat = just_symbols;
2531 if (OutputFormat == sysv || SizeSort)