HomeSort by relevance Sort by last modified time
    Searched defs:Opt (Results 1 - 13 of 13) sorted by null

  /external/llvm/tools/llvm-ld/
Optimize.cpp 34 static cl::opt<bool> DontVerify("disable-verify", cl::ReallyHidden);
36 static cl::opt<bool> DisableInline("disable-inlining",
39 static cl::opt<bool>
40 DisableOptimizations("disable-opt",
43 static cl::opt<bool> DisableInternalize("disable-internalize",
46 static cl::opt<bool> VerifyEach("verify-each",
53 static cl::opt<bool> Strip("strip-all",
59 static cl::opt<bool> StripDebug("strip-debug",
105 const PassInfo *Opt = OptimizationList[i];
106 if (Opt->getNormalCtor()
    [all...]
  /external/clang/lib/Frontend/
Warnings.cpp 37 StringRef Prefix, StringRef Opt,
39 StringRef Suggestion = DiagnosticIDs::getNearestWarningOption(Opt);
43 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion);
47 << (Prefix.str() += Opt);
85 StringRef Opt = Opts.Warnings[i];
88 if (Opt == "format=0")
89 Opt = "no-format";
94 if (Opt.startswith("no-")) {
96 Opt = Opt.substr(3)
    [all...]
TextDiagnosticPrinter.cpp 92 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
93 if (!Opt.empty()) {
94 OS << (Started ? "," : " [") << "-W" << Opt;
CompilerInvocation.cpp 157 Res.push_back("-analyzer-opt-analyze-headers");
161 Res.push_back("-analyzer-opt-analyze-nested-blocks");
174 const std::pair<std::string, bool> &opt = Opts.CheckersControlList[i]; local
175 if (opt.second)
179 Res.push_back(opt.first);
    [all...]
  /external/llvm/include/llvm/Support/
PassNameParser.h 37 // automatically add a command line argument to opt for each pass.
41 cl::Option *Opt;
43 PassNameParser() : Opt(0) {}
47 Opt = &O;
69 if (ignorablePass(P) || !Opt) return;
98 /// mechanism to automatically add a command line argument to opt for
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 39 extern cl::opt<std::string> OutputPrefix;
45 cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
76 // telling the user how to reproduce it: opt -foo blah.bc
88 outs() << "opt " << Filename;
95 cl::opt<bool> SilencePasses("silence-passes",
98 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
99 cl::desc("<opt arguments>..."),
151 sys::Path tool = sys::Program::FindProgramByName("opt");
153 errs() << "Cannot find `opt' in PATH!\n";
157 // Ok, everything that could go wrong before running opt is done
    [all...]
  /external/clang/include/clang/Driver/
Arg.h 36 const Option *Opt;
57 Arg(const Option *Opt, unsigned Index, const Arg *BaseArg = 0);
58 Arg(const Option *Opt, unsigned Index,
60 Arg(const Option *Opt, unsigned Index,
64 const Option &getOption() const { return *Opt; }
  /external/clang/lib/Driver/
OptTable.cpp 76 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}
138 Option *Opt = 0;
141 Opt = new InputOption(id); break;
143 Opt = new UnknownOption(id); break;
145 Opt = new OptionGroup(id, info.Name, Group); break;
147 Opt = new FlagOption(id, info.Name, Group, Alias); break;
149 Opt = new JoinedOption(id, info.Name, Group, Alias); break;
151 Opt = new SeparateOption(id, info.Name, Group, Alias); break;
153 Opt = new CommaJoinedOption(id, info.Name, Group, Alias); break
    [all...]
Driver.cpp     [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 53 TEMPLATE_INSTANTIATION(class opt<unsigned>);
54 TEMPLATE_INSTANTIATION(class opt<int>);
55 TEMPLATE_INSTANTIATION(class opt<std::string>);
56 TEMPLATE_INSTANTIATION(class opt<char>);
57 TEMPLATE_INSTANTIATION(class opt<bool>);
578 Option *Opt = PositionalOpts[i];
579 if (RequiresValue(Opt))
586 Opt->error("error - this positional option will never be matched, "
589 } else if (UnboundedFound && !Opt->ArgStr[0]) {
594 ErrorParsing |= Opt->error("error - option can never match, because
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 131 Opt opt = null; local
177 opt = opts.getOpt (canonicalName);
181 if (opt == null)
183 opt = new Opt (optName, canonicalName, patternPrefix);
184 opts.addOpt (opt, optdef, optName);
189 if (opt == null)
191 opt = new Opt (optName, canonicalName, patternPrefix)
355 final IOpt opt = specified [s]; local
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/emma/lib/
emma.jar 

Completed in 256 milliseconds