Home
last modified time | relevance | path

Searched refs:Quiet (Results 1 – 25 of 66) sorted by relevance

123

/external/llvm/tools/opt/
DPassPrinters.cpp33 FunctionPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet) in FunctionPassPrinter()
34 : FunctionPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) { in FunctionPassPrinter()
66 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet) in CallGraphSCCPassPrinter()
67 : CallGraphSCCPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) { in CallGraphSCCPassPrinter()
103 ModulePassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet) in ModulePassPrinter()
104 : ModulePass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) { in ModulePassPrinter()
135 LoopPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet) in LoopPassPrinter()
136 : LoopPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) { in LoopPassPrinter()
168 RegionPassPrinter(const PassInfo *PI, raw_ostream &out, bool Quiet) in RegionPassPrinter()
169 : RegionPass(ID), PassToPrint(PI), Out(out), QuietPass(Quiet) { in RegionPassPrinter()
[all …]
DPassPrinters.h29 bool Quiet);
32 raw_ostream &out, bool Quiet);
35 bool Quiet);
38 bool Quiet);
41 bool Quiet);
44 raw_ostream &out, bool Quiet);
Dopt.cpp181 Quiet("q", cl::desc("Obsolete option"), cl::Hidden); variable
184 QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet));
452 if (CheckBitcodeOutputToConsole(Out->os(), !Quiet)) in main()
573 Passes.add(createBasicBlockPassPrinter(PassInf, Out->os(), Quiet)); in main()
576 Passes.add(createRegionPassPrinter(PassInf, Out->os(), Quiet)); in main()
579 Passes.add(createLoopPassPrinter(PassInf, Out->os(), Quiet)); in main()
582 Passes.add(createFunctionPassPrinter(PassInf, Out->os(), Quiet)); in main()
585 Passes.add(createCallGraphPassPrinter(PassInf, Out->os(), Quiet)); in main()
588 Passes.add(createModulePassPrinter(PassInf, Out->os(), Quiet)); in main()
/external/ltp/testcases/kernel/fs/doio/
Drwtest179 Quiet=$1
397 if [[ -z "$Quiet" ]]; then
/external/libgav1/libgav1/cmake/
Dlibgav1_build_definitions.cmake85 # Quiet warnings in copy-list-initialization where {} elision has always
96 # Quiet warnings due to potential snprintf() truncation in threadpool.cc.
100 # Quiet gcc 6 vs 7 abi warnings:
/external/llvm-project/clang-tools-extra/clang-tidy/tool/
DClangTidyMain.cpp225 static cl::opt<bool> Quiet("quiet", cl::desc(R"( variable
507 if (!Quiet) { in clangTidyMain()
516 if (!Quiet) { in clangTidyMain()
532 if (!Quiet) in clangTidyMain()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dre2_test.cc381 RE2 re("([a-zA-Z0-9]|-)+(\\.([a-zA-Z0-9]|-)+)*(\\.)?", RE2::Quiet); in TestRecursion()
1154 RE2 re("a\\1", RE2::Quiet); in TEST()
1157 RE2 re("a[x", RE2::Quiet); in TEST()
1161 RE2 re("a[z-a]", RE2::Quiet); in TEST()
1165 RE2 re("a[[:foobar:]]", RE2::Quiet); in TEST()
1169 RE2 re("a(b", RE2::Quiet); in TEST()
1173 RE2 re("a\\", RE2::Quiet); in TEST()
1181 RE2 re("a\\", RE2::Quiet); in TEST()
1188 RE2 re("(((.{100}){100}){100}){100}", RE2::Quiet); in TEST()
1195 RE2 re(".{512}x", RE2::Quiet); in TEST()
[all …]
/external/catch2/include/reporters/
Dcatch_reporter_bases.cpp63 return { Verbosity::Quiet, Verbosity::Normal, Verbosity::High }; in getSupportedVerbosities()
/external/catch2/include/internal/
Dcatch_interfaces_config.h23 Quiet = 0, enumerator
Dcatch_commandline.cpp109 config.verbosity = Verbosity::Quiet; in makeCommandLineParser()
/external/llvm/tools/bugpoint/
DOptimizerDriver.cpp132 bool Quiet, unsigned NumExtraArgs, in runPasses() argument
248 if (!Quiet) { in runPasses()
DBugDriver.h257 bool Quiet = false, unsigned NumExtraArgs = 0,
/external/llvm-project/llvm/tools/bugpoint/
DOptimizerDriver.cpp133 bool Quiet, ArrayRef<std::string> ExtraArgs) const { in runPasses() argument
251 if (!Quiet) { in runPasses()
DBugDriver.h233 bool Quiet = false,
/external/llvm-project/llvm/lib/DWARFLinker/
DDWARFLinker.cpp2025 bool IsLittleEndian, unsigned Indent, bool Quiet) { in registerModuleReference() argument
2038 if (!Quiet) in registerModuleReference()
2043 if (!Quiet && Options.Verbose) { in registerModuleReference()
2053 if (!Quiet && Options.Verbose && (Cached->second != DwoId)) in registerModuleReference()
2058 if (!Quiet && Options.Verbose) in registerModuleReference()
2062 if (!Quiet && Options.Verbose) in registerModuleReference()
2072 UnitID, IsLittleEndian, Indent + 2, Quiet)) { in registerModuleReference()
2084 unsigned Indent, bool Quiet) { in loadClangModule() argument
2110 ModulesEndOffset, UnitID, IsLittleEndian, Indent, Quiet)) { in loadClangModule()
2124 if (!Quiet && Options.Verbose) in loadClangModule()
[all …]
/external/llvm/cmake/modules/
DAddSphinxTarget.cmake22 -q # Quiet: no output other than errors and warnings.
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DDebugify.cpp30 cl::opt<bool> Quiet("debugify-quiet", variable
33 raw_ostream &dbg() { return Quiet ? nulls() : errs(); } in dbg()
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/
DClangIncludeFixer.cpp112 cl::opt<bool> Quiet("q", cl::desc("Reduce terminal output"), cl::init(false), variable
429 if (!Quiet) { in includeFixerMain()
/external/llvm-project/llvm/cmake/modules/
DAddSphinxTarget.cmake40 -q # Quiet: no output other than errors and warnings.
/external/llvm-project/llvm/lib/Transforms/Utils/
DDebugify.cpp31 cl::opt<bool> Quiet("debugify-quiet", variable
45 raw_ostream &dbg() { return Quiet ? nulls() : errs(); } in dbg()
/external/llvm-project/llvm/include/llvm/DWARFLinker/
DDWARFLinker.h471 bool Quiet = false);
483 unsigned Indent = 0, bool Quiet = false);
/external/skqp/gn/
DBUILD.gn501 "/SUBSYSTEM:CONSOLE", # Quiet "no subsystem specified; CONSOLE assumed".
502 "/INCREMENTAL:NO", # Quiet warnings about failing to incrementally link by never trying to.
/external/vixl/test/aarch32/config/
Ddata-types.json2352 // - Quiet NaNs
/external/libxml2/os400/libxmlrpg/
Dschematron.rpgle21 d XML_SCHEMATRON_OUT_QUIET... Quiet no report
/external/llvm-project/compiler-rt/lib/builtins/
Dfp_extend_impl.inc33 // 2. Quiet NaNs, if supported, are indicated by the leading bit of the

123