Lines Matching defs:darwin
90 enum OutputFormatTy { bsd, sysv, posix, darwin, just_symbols };
297 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
298 // the darwin format it produces the same output as darwin's nm(1) -m output
300 // darwin's nm(1) -x format.
793 (UndefinedOnly && MachO && OutputFormat != darwin)) &&
825 // If OutputFormat is darwin or we are printing Mach-O symbols in hex and
826 // we have a MachOObjectFile, call darwinPrintSymbol to print as darwin's
827 // nm(1) -m output or hex, else if OutputFormat is darwin or we are
830 if ((OutputFormat == darwin || FormatMachOasHex) && (MachO || Obj.isIR())) {
836 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
2442 else if (V == "darwin")
2443 OutputFormat = darwin;
2447 error("--format value should be one of: bsd, posix, sysv, darwin, "