HomeSort by relevance Sort by last modified time
    Searched defs:Banner (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/CodeGen/
MachineFunctionPrinterPass.cpp 31 const std::string Banner;
34 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
35 : MachineFunctionPass(ID), OS(os), Banner(banner) {}
47 OS << "# " << Banner << ":\n";
62 /// default banner is empty.
65 const std::string &Banner){
66 return new MachineFunctionPrinterPass(OS, Banner);
  /external/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineFunctionPrinterPass.cpp 29 const std::string Banner;
31 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
32 : MachineFunctionPass(ID), OS(os), Banner(banner) {}
42 OS << "# " << Banner << ":\n";
53 /// default banner is empty.
56 const std::string &Banner){
57 return new MachineFunctionPrinterPass(OS, Banner);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
IRPrintingPasses.h 38 const std::string &Banner = "",
44 const std::string &Banner = "");
49 const std::string &Banner = "");
63 std::string Banner;
68 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
82 std::string Banner;
86 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
CustomizedDisplayLibInternal.h 90 EFI_STRING_ID Banner[BANNER_HEIGHT][BANNER_COLUMNS];
121 Print banner info for front page.
  /external/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /external/llvm/lib/IR/
IRPrintingPasses.cpp 24 PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner,
26 : OS(OS), Banner(Banner),
30 OS << Banner;
42 PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner)
43 : OS(OS), Banner(Banner) {}
48 OS << Banner << static_cast<Value &>(F);
60 PrintModulePassWrapper(raw_ostream &OS, const std::string &Banner,
62 : ModulePass(ID), P(OS, Banner, ShouldPreserveUseListOrder) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
PrintModulePass.cpp 26 std::string Banner;
34 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
41 (*Out) << Banner << M;
51 std::string Banner; // String to print before each function
56 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
65 // runOnFunction - This pass just prints a banner followed by the
69 (*Out) << Banner << static_cast<Value&>(F);
90 const std::string &Banner) {
91 return new PrintModulePass(Banner, OS, DeleteStream)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
circular_raw_ostream.h 66 /// Banner - A pointer to a banner to print before dumping the
69 const char *Banner;
112 Filled(false), Banner(Header) {
  /external/llvm/lib/Analysis/
RegionPass.cpp 188 std::string Banner;
194 : RegionPass(ID), Banner(B), Out(o) {}
201 Out << Banner;
280 const std::string &Banner) const {
281 return new PrintRegionPass(Banner, O);

Completed in 1621 milliseconds

1 2 3