summaryrefslogtreecommitdiff
path: root/llvm/include/llvm/Support/FormattedStream.h
AgeCommit message (Expand)Author
2025-10-29[clang] Use a formatted_raw_ostream in TextDiagnostic (#164935)Timm Baeder
2025-05-12[llvm] annotate interfaces in llvm/Support for DLL export (#136014)Andrew Rogers
2024-03-28[Support] Fix color handling in formatted_raw_ostream (#86700)Andrew Ng
2020-07-06[Support] Fix formatted_raw_ostream for UTF-8Oliver Stannard
2020-03-16Revert "[llvm-objdump] Display locations of variables alongside disassembly"Nico Weber
2020-03-16[llvm-objdump] Display locations of variables alongside disassemblyOliver Stannard
2019-08-02Revert r367649: Improve raw_ostream so that you can "write" colors using oper...Rui Ueyama
2019-08-02Improve raw_ostream so that you can "write" colors using operator<<Rui Ueyama
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko
2015-04-11Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko
2015-04-09Simplify use of formatted_raw_ostream.Rafael Espindola
2015-04-09Use implicit calls to parent constructor. NFC.Rafael Espindola
2015-04-09This reverts commit r234460 and r234461.Rafael Espindola
2015-04-09Add classof implementations to the raw_ostream classes.Rafael Espindola
2014-04-07[C++11] Make use of 'nullptr' in the Support library.Craig Topper
2014-03-10[C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.Craig Topper
2014-03-04[C+11] Add 'override' keyword to methods in the support library.Craig Topper
2014-03-02Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper
2013-08-08Forward resetColor() et al to the underlying stream.Ted Kremenek
2013-05-08Add line tracking support to FormattedStream Daniel Malea
2013-04-01unindent the file to follow coding standards, change class doc commentChris Lattner
2012-09-23Add LLVM_OVERRIDE to methods that override their base classes.Craig Topper
2012-09-14formatted_raw_ostream: Fix a serious bug in tell().Daniel Dunbar
2010-09-01Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman
2010-08-23formatted_tool_output_file::close needs to flush its buffer beforeDan Gohman
2010-08-20Export error-handling functions in formatted_tool_output_file.Dan Gohman
2010-08-20Introduce a new tool_output_file class, which extends raw_ostream withDan Gohman
2010-02-15comment fix.Chris Lattner
2010-02-15make PadToColumn return the stream so you can use:Chris Lattner
2010-01-05Fix a build error by adding a missing commit.David Greene
2009-12-19Make some methods const. The only interesting change here is thatChris Lattner
2009-09-22Revert "Don't allow formatted_ostream to be unbuffered, even if its underlyingDaniel Dunbar
2009-09-21Don't allow formatted_ostream to be unbuffered, even if its underlying bufferDaniel Dunbar
2009-09-06Change "const static" to "static const", as warned aboutDuncan Sands
2009-08-22switch formattedstream to use raw_ostream::indent. This eliminatesChris Lattner
2009-08-18raw_ostream: Reduce FormattedStream's reliance on raw_ostream's implementation.Daniel Dunbar
2009-08-17the MinPad argument to PadToColumn only really makes sense to be 1,Chris Lattner
2009-08-15Move FormattedStream's write_impl out of line.Dan Gohman
2009-08-13Make formatted_raw_ostream restore the buffer settings of theDan Gohman
2009-08-12Add a GetBufferSize() member to raw_ostream and use it toDan Gohman
2009-07-29Re-apply previous changes and improve column padding performance some more.David Greene
2009-07-29Revert r77397, it causes significant regressions in llc performance.Daniel Dunbar
2009-07-28Improve performance of PadToColumn by eliminating flushes.David Greene
2009-07-23Write space padding as one string to speed up comment printing.David Greene
2009-07-16Use setStream infomatted_raw_ostream's constructor, to reduce codeDan Gohman
2009-07-16Remove inapplicable comments.Dan Gohman
2009-07-16Use size_t.Dan Gohman
2009-07-16formatted_raw_ostream both is-a raw_ostream and has-a raw_ostream. ThisDan Gohman