Home
last modified time | relevance | path

Searched refs:Banner (Results 1 – 25 of 46) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIRPrintingPasses.cpp24 PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner, in PrintModulePass() argument
26 : OS(OS), Banner(Banner), in PrintModulePass()
31 if (!Banner.empty()) in run()
32 OS << Banner << "\n"; in run()
39 if (!BannerPrinted && !Banner.empty()) { in run()
40 OS << Banner << "\n"; in run()
51 PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner) in PrintFunctionPass() argument
52 : OS(OS), Banner(Banner) {} in PrintFunctionPass()
58 OS << Banner << " (function: " << F.getName() << ")\n" << *F.getParent(); in run()
60 OS << Banner << '\n' << static_cast<Value &>(F); in run()
[all …]
DPass.cpp50 const std::string &Banner) const { in createPrinterPass()
51 return createPrintModulePass(OS, Banner); in createPrinterPass()
154 const std::string &Banner) const { in createPrinterPass()
155 return createPrintFunctionPass(OS, Banner); in createPrinterPass()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/
DStandardInstrumentations.cpp73 void printIR(const Module *M, StringRef Banner, StringRef Extra = StringRef()) { in printIR() argument
74 dbgs() << Banner << Extra << "\n"; in printIR()
77 void printIR(const Function *F, StringRef Banner, in printIR() argument
81 dbgs() << Banner << Extra << "\n" << static_cast<const Value &>(*F); in printIR()
83 void printIR(const LazyCallGraph::SCC *C, StringRef Banner, in printIR() argument
90 dbgs() << Banner << Extra << "\n"; in printIR()
97 void printIR(const Loop *L, StringRef Banner) { in printIR() argument
101 llvm::printLoop(const_cast<Loop &>(*L), dbgs(), Banner); in printIR()
106 void unwrapAndPrint(Any IR, StringRef Banner, bool ForceModule = false) { in unwrapAndPrint() argument
109 printIR(UnwrappedModule->first, Banner, UnwrappedModule->second); in unwrapAndPrint()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIRPrintingPasses.h37 const std::string &Banner = "",
43 const std::string &Banner = "");
76 std::string Banner; variable
81 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
95 std::string Banner; variable
99 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFunctionPrinterPass.cpp32 const std::string Banner; member
36 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
49 OS << "# " << Banner << ":\n"; in runOnMachineFunction()
67 const std::string &Banner){ in createMachineFunctionPrinterPass() argument
68 return new MachineFunctionPrinterPass(OS, Banner); in createMachineFunctionPrinterPass()
DTargetPassConfig.cpp533 std::string Banner; in addPass() local
536 Banner = std::string("After ") + std::string(P->getPassName()); in addPass()
540 addPrintPass(Banner); in addPass()
542 addVerifyPass(Banner); in addPass()
589 void TargetPassConfig::printAndVerify(const std::string &Banner) { in printAndVerify() argument
590 addPrintPass(Banner); in printAndVerify()
591 addVerifyPass(Banner); in printAndVerify()
594 void TargetPassConfig::addPrintPass(const std::string &Banner) { in addPrintPass() argument
596 PM->add(createMachineFunctionPrinterPass(dbgs(), Banner)); in addPrintPass()
599 void TargetPassConfig::addVerifyPass(const std::string &Banner) { in addVerifyPass() argument
[all …]
DMachineFunctionPass.cpp34 const std::string &Banner) const { in createPrinterPass()
35 return createMachineFunctionPrinterPass(O, Banner); in createPrinterPass()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopPassManager.cpp97 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner) in PrintLoopPass() argument
98 : OS(OS), Banner(Banner) {} in PrintLoopPass()
103 printLoop(L, OS, Banner); in run()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dbanner_test.dart26 test('A Banner with a location of topStart paints in the top left (LTR)', () {
54 test('A Banner with a location of topStart paints in the top right (RTL)', () {
82 test('A Banner with a location of topEnd paints in the top right (LTR)', () {
110 test('A Banner with a location of topEnd paints in the top left (RTL)', () {
138 test('A Banner with a location of bottomStart paints in the bottom left (LTR)', () {
166 test('A Banner with a location of bottomStart paints in the bottom right (RTL)', () {
194 test('A Banner with a location of bottomEnd paints in the bottom right (LTR)', () {
222 test('A Banner with a location of bottomEnd paints in the bottom left (RTL)', () {
250 testWidgets('Banner widget', (WidgetTester tester) async {
255 child: Banner(message: 'Hello', location: BannerLocation.topEnd),
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopPass.cpp38 std::string Banner; member in __anonb6128efe0111::PrintLoopPassWrapper
43 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner) in PrintLoopPassWrapper() argument
44 : LoopPass(ID), OS(OS), Banner(Banner) {} in PrintLoopPassWrapper()
54 printLoop(*L, OS, Banner); in runOnLoop()
329 const std::string &Banner) const { in createPrinterPass()
330 return new PrintLoopPassWrapper(O, Banner); in createPrinterPass()
DRegionPass.cpp183 std::string Banner; member in __anonf48b73280111::PrintRegionPass
189 : RegionPass(ID), Banner(B), Out(o) {} in PrintRegionPass()
196 Out << Banner; in runOnRegion()
277 const std::string &Banner) const { in createPrinterPass()
278 return new PrintRegionPass(Banner, O); in createPrinterPass()
DCallGraphSCCPass.cpp620 std::string Banner; member in __anon49f87fcb0211::PrintCallGraphPass
627 : CallGraphSCCPass(ID), Banner(B), OS(OS) {} in PrintCallGraphPass()
638 OS << Banner; in runOnSCC()
680 const std::string &Banner) const { in createPrinterPass()
681 return new PrintCallGraphPass(Banner, OS); in createPrinterPass()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dbanner.dart27 /// Where to show a [Banner].
30 /// (which can be overridden by [Banner.layoutDirection]).
33 /// (or [Banner.layoutDirection]) is [TextDirection.rtl] and in the top-left
38 /// (or [Banner.layoutDirection]) is [TextDirection.rtl] and in the top-right
43 /// [Directionality] (or [Banner.layoutDirection]) is [TextDirection.rtl] and
49 /// [Directionality] (or [Banner.layoutDirection]) is [TextDirection.rtl] and
55 /// Paints a [Banner].
241 class Banner extends StatelessWidget {
245 const Banner({
330 /// Displays a [Banner] saying "DEBUG" when running in checked mode.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
Dcircular_raw_ostream.cpp42 TheStream->write(Banner, std::strlen(Banner)); in flushBufferWithBanner()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dcircular_raw_ostream.cpp41 TheStream->write(Banner, std::strlen(Banner)); in flushBufferWithBanner()
DInitLLVM.cpp42 std::string Banner = std::string(Argv[0]) + ": "; in InitLLVM() local
43 ExitOnError ExitOnErr(Banner); in InitLLVM()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
DPass.h122 const std::string &Banner) const = 0;
231 const std::string &Banner) const override;
288 const std::string &Banner) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Dcircular_raw_ostream.h69 const char *Banner; variable
112 Filled(false), Banner(Header) { in raw_ostream()
DError.h941 ExitOnError(std::string Banner = "", int DefaultErrorExitCode = 1)
942 : Banner(std::move(Banner)), in Banner() argument
946 void setBanner(std::string Banner) { this->Banner = std::move(Banner); } in setBanner() argument
974 logAllUnhandledErrors(std::move(Err), errs(), Banner); in checkError()
979 std::string Banner; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
Dcircular_raw_ostream.h68 const char *Banner; variable
111 Filled(false), Banner(Header) { in raw_ostream()
DError.h1304 ExitOnError(std::string Banner = "", int DefaultErrorExitCode = 1)
1305 : Banner(std::move(Banner)), in Banner() function
1309 void setBanner(std::string Banner) { this->Banner = std::move(Banner); } in setBanner() argument
1337 logAllUnhandledErrors(std::move(Err), errs(), Banner); in checkError()
1342 std::string Banner; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetPassConfig.h300 void printAndVerify(const std::string &Banner);
303 void addPrintPass(const std::string &Banner);
307 void addVerifyPass(const std::string &Banner);
DPasses.h49 const std::string &Banner ="");
332 FunctionPass *createMachineVerifierPass(const std::string& Banner);
DMachineFunctionPass.h73 const std::string &Banner) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DDebugify.cpp57 StringRef Banner) { in applyDebugifyMetadata() argument
60 dbg() << Banner << "Skipping module with debug info\n"; in applyDebugifyMetadata()
204 StringRef NameOfWrappedPass, StringRef Banner, in checkDebugifyMetadata() argument
209 dbg() << Banner << "Skipping module without debugify metadata\n"; in checkDebugifyMetadata()
285 dbg() << Banner; in checkDebugifyMetadata()

12