Lines Matching refs:OutputFormat
52 cl::opt<OutputFormatTy> OutputFormat(
59 cl::aliasopt(OutputFormat));
261 // the OutputFormat is darwin. It produces the same output as darwin's nm(1) -m
427 if (OutputFormat == posix && MultipleFiles && printName) {
429 } else if (OutputFormat == bsd && MultipleFiles && printName) {
431 } else if (OutputFormat == sysv) {
462 if (OutputFormat == sysv || I->Address == UnknownAddressOrSize)
464 if (OutputFormat == sysv)
473 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's
474 // nm(1) -m output, else if OutputFormat is darwin and not a Mach-O object
475 // fall back to OutputFormat bsd (see below).
477 if (OutputFormat == darwin && MachO) {
479 } else if (OutputFormat == posix) {
482 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
491 } else if (OutputFormat == sysv) {
1016 OutputFormat = bsd;
1018 OutputFormat = posix;
1020 OutputFormat = darwin;
1027 if (OutputFormat == sysv || SizeSort)