Lines Matching refs:Out
470 static void displayTemplightEntry(llvm::raw_ostream &Out, const Sema &TheSema, in displayTemplightEntry() argument
481 Out << "---" << YAML << "\n"; in displayTemplightEntry()
538 llvm::raw_ostream &Out; member in __anonab0344ae0411::DumpModuleInfoListener
541 DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { } in DumpModuleInfoListener() argument
544 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
547 Out.indent(2) in ReadFullVersionInformation()
556 Out.indent(2) << "Module name: " << ModuleName << "\n"; in ReadModuleName()
559 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n"; in ReadModuleMapFile()
564 Out.indent(2) << "Language options:\n"; in ReadLanguageOptions()
568 Out.indent(4) << Description << ": " \ in ReadLanguageOptions()
571 Out.indent(4) << Description << ": " << LangOpts.Name << "\n"; in ReadLanguageOptions()
577 Out.indent(4) << "Module features:\n"; in ReadLanguageOptions()
579 Out.indent(6) << Feature << "\n"; in ReadLanguageOptions()
587 Out.indent(2) << "Target options:\n"; in ReadTargetOptions()
588 Out.indent(4) << " Triple: " << TargetOpts.Triple << "\n"; in ReadTargetOptions()
589 Out.indent(4) << " CPU: " << TargetOpts.CPU << "\n"; in ReadTargetOptions()
590 Out.indent(4) << " TuneCPU: " << TargetOpts.TuneCPU << "\n"; in ReadTargetOptions()
591 Out.indent(4) << " ABI: " << TargetOpts.ABI << "\n"; in ReadTargetOptions()
594 Out.indent(4) << "Target features:\n"; in ReadTargetOptions()
597 Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n"; in ReadTargetOptions()
606 Out.indent(2) << "Diagnostic options:\n"; in ReadDiagnosticOptions()
609 Out.indent(4) << #Name << ": " << DiagOpts->get##Name() << "\n"; in ReadDiagnosticOptions()
611 Out.indent(4) << #Name << ": " << DiagOpts->Name << "\n"; in ReadDiagnosticOptions()
614 Out.indent(4) << "Diagnostic flags:\n"; in ReadDiagnosticOptions()
616 Out.indent(6) << "-W" << Warning << "\n"; in ReadDiagnosticOptions()
618 Out.indent(6) << "-R" << Remark << "\n"; in ReadDiagnosticOptions()
626 Out.indent(2) << "Header search options:\n"; in ReadHeaderSearchOptions()
627 Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n"; in ReadHeaderSearchOptions()
628 Out.indent(4) << "Resource dir [ -resource-dir=]: '" << HSOpts.ResourceDir << "'\n"; in ReadHeaderSearchOptions()
629 Out.indent(4) << "Module Cache: '" << SpecificModuleCachePath << "'\n"; in ReadHeaderSearchOptions()
644 Out.indent(2) << "Preprocessor options:\n"; in ReadPreprocessorOptions()
651 Out.indent(4) << "Predefined macros:\n"; in ReadPreprocessorOptions()
657 Out.indent(6); in ReadPreprocessorOptions()
659 Out << "-U"; in ReadPreprocessorOptions()
661 Out << "-D"; in ReadPreprocessorOptions()
662 Out << I->first << "\n"; in ReadPreprocessorOptions()
670 Out.indent(2) << "Module file extension '" in readModuleFileExtension()
674 Out << ": "; in readModuleFileExtension()
675 Out.write_escaped(Metadata.UserInfo); in readModuleFileExtension()
678 Out << "\n"; in readModuleFileExtension()
695 Out.indent(2) << "Input file: " << Filename; in visitInputFile()
698 Out << " ["; in visitInputFile()
700 Out << "System"; in visitInputFile()
702 Out << ", "; in visitInputFile()
705 Out << "Overridden"; in visitInputFile()
707 Out << ", "; in visitInputFile()
710 Out << "ExplicitModule"; in visitInputFile()
712 Out << "]"; in visitInputFile()
715 Out << "\n"; in visitInputFile()
727 Out.indent(2) << "Imports module '" << ModuleName in visitImport()
750 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs(); in ExecuteAction() local
752 Out << "Information for module file '" << getCurrentFile() << "':\n"; in ExecuteAction()
758 Out << " Module format: " << (IsRaw ? "raw" : "obj") << "\n"; in ExecuteAction()
761 DumpModuleInfoListener Listener(Out); in ExecuteAction()