Lines Matching defs:darwin
88 enum OutputFormatTy { bsd, sysv, posix, darwin, just_symbols };
295 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
296 // the darwin format it produces the same output as darwin's nm(1) -m output
298 // darwin's nm(1) -x format.
791 (UndefinedOnly && MachO && OutputFormat != darwin)) &&
823 // If OutputFormat is darwin or we are printing Mach-O symbols in hex and
824 // we have a MachOObjectFile, call darwinPrintSymbol to print as darwin's
825 // nm(1) -m output or hex, else if OutputFormat is darwin or we are
828 if ((OutputFormat == darwin || FormatMachOasHex) && (MachO || Obj.isIR())) {
834 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
2440 else if (V == "darwin")
2441 OutputFormat = darwin;
2445 error("--format value should be one of: bsd, posix, sysv, darwin, "