HomeSort by relevance Sort by last modified time
    Searched refs:Quiet (Results 1 - 12 of 12) sorted by null

  /external/llvm/tools/opt/
PassPrinters.h 29 bool Quiet);
32 raw_ostream &out, bool Quiet);
35 bool Quiet);
38 bool Quiet);
41 bool Quiet);
44 raw_ostream &out, bool Quiet);
PassPrinters.cpp 33 FunctionPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet)
34 : FunctionPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) {
66 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet)
67 : CallGraphSCCPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) {
103 ModulePassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet)
104 : ModulePass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) {
135 LoopPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet)
136 : LoopPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) {
168 RegionPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet)
169 : RegionPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) {
    [all...]
opt.cpp 171 Quiet("q", cl::desc("Obsolete option"), cl::Hidden);
174 QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
411 if (CheckBitcodeOutputToConsole(Out->os(), !Quiet))
557 Passes.add(createBasicBlockPassPrinter(PassInf, Out->os(), Quiet));
560 Passes.add(createRegionPassPrinter(PassInf, Out->os(), Quiet));
563 Passes.add(createLoopPassPrinter(PassInf, Out->os(), Quiet));
566 Passes.add(createFunctionPassPrinter(PassInf, Out->os(), Quiet));
569 Passes.add(createCallGraphPassPrinter(PassInf, Out->os(), Quiet));
572 Passes.add(createModulePassPrinter(PassInf, Out->os(), Quiet));
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 385 RE2 re("([a-zA-Z0-9]|-)+(\\.([a-zA-Z0-9]|-)+)*(\\.)?", RE2::Quiet);
1067 { RE2 re("a\\1", RE2::Quiet); CHECK(!re.ok()); }
1069 RE2 re("a[x", RE2::Quiet);
1073 RE2 re("a[z-a]", RE2::Quiet);
1077 RE2 re("a[[:foobar:]]", RE2::Quiet);
1081 RE2 re("a(b", RE2::Quiet);
1085 RE2 re("a\\", RE2::Quiet);
1093 RE2 re("a\\", RE2::Quiet);
1100 RE2 re("(((.{100}){100}){100}){100}", RE2::Quiet);
1107 RE2 re(".{512}x", RE2::Quiet);
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 378 RE2 re("([a-zA-Z0-9]|-)+(\\.([a-zA-Z0-9]|-)+)*(\\.)?", RE2::Quiet);
1058 { RE2 re("a\\1", RE2::Quiet); CHECK(!re.ok()); }
1060 RE2 re("a[x", RE2::Quiet);
1064 RE2 re("a[z-a]", RE2::Quiet);
1068 RE2 re("a[[:foobar:]]", RE2::Quiet);
1072 RE2 re("a(b", RE2::Quiet);
1076 RE2 re("a\\", RE2::Quiet);
1084 RE2 re("a\\", RE2::Quiet);
1091 RE2 re("(((.{100}){100}){100}){100}", RE2::Quiet);
1098 RE2 re(".{512}x", RE2::Quiet);
    [all...]
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 127 bool Quiet, unsigned NumExtraArgs,
230 if (!Quiet) {
258 if (runPasses(M, Passes, BitcodeResult, false/*delete*/, true/*quiet*/,
BugDriver.h 255 /// or failed, unless Quiet is set. ExtraArgs specifies additional arguments
261 bool Quiet = false, unsigned NumExtraArgs = 0,
  /external/jhead/
jhead.c 48 static int Quiet = FALSE; // Be quiet on success (like unix programs)
521 if (!Quiet){
845 DoCommand(FileName, Quiet ? FALSE : TRUE);
    [all...]
  /external/chromium_org/third_party/re2/re2/
re2.h 255 Quiet // do not log about regexp parse errors
    [all...]
re2.cc 61 log_errors_(opt != RE2::Quiet),
    [all...]
  /external/regex-re2/re2/
re2.h 255 Quiet // do not log about regexp parse errors
    [all...]
re2.cc 43 log_errors_(opt != RE2::Quiet),
    [all...]

Completed in 1015 milliseconds