Home
last modified time | relevance | path

Searched refs:FOut (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DAnalyzerOptions.cpp36 llvm::formatted_raw_ostream FOut(Out); in printFormattedEntry() local
40 FOut.PadToColumn(InitialPad) << EntryDescPair.first; in printFormattedEntry()
42 if (FOut.getColumn() > PadForDesc) in printFormattedEntry()
43 FOut << '\n'; in printFormattedEntry()
45 FOut.PadToColumn(PadForDesc); in printFormattedEntry()
48 FOut << EntryDescPair.second; in printFormattedEntry()
53 if (FOut.getColumn() > MinLineWidth && C == ' ') { in printFormattedEntry()
54 FOut << '\n'; in printFormattedEntry()
55 FOut.PadToColumn(PadForDesc); in printFormattedEntry()
58 FOut << C; in printFormattedEntry()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenTargetMachineImpl.cpp186 auto FOut = std::make_unique<formatted_raw_ostream>(Out); in createMCStreamer() local
188 Context, std::move(FOut), std::move(InstPrinter), std::move(MCE), in createMCStreamer()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp578 auto FOut = std::make_unique<formatted_raw_ostream>(*OS); in main() local
579 Str.reset(TheTarget->createAsmStreamer(Ctx, std::move(FOut), std::move(IP), in main()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp554 auto FOut = std::make_unique<formatted_raw_ostream>(*Out); in ExecuteAssemblerImpl() local
555 Str.reset(TheTarget->createAsmStreamer(Ctx, std::move(FOut), std::move(IP), in ExecuteAssemblerImpl()