Lines Matching refs:longName
130 DE_ASSERT(opt.shortName || opt.longName);
138 if (opt.longName)
140 DE_ASSERT(longOptMap.find(opt.longName) == longOptMap.end());
141 longOptMap[opt.longName] = &opt;
184 err << "Command line option '--" << opt->longName << "' specified multiple times\n";
199 err << "No value expected for command line option '--" << opt->longName << "'\n";
220 err << "Got error parsing command line option '--" << opt->longName << "': " << e.what() << "\n";
226 err << "Expected value for command line option '--" << opt->longName << "'\n";
255 if (opt.shortName && opt.longName)
258 if (opt.longName)
259 str << "--" << opt.longName;