aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Twine.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-04-30IWYU for llvm-config.h in llvm, additions.Nico Weber1-0/+1
2017-10-15Reverting r315590; it did not include changes for llvm-tblgen, which is causi...Aaron Ballman1-1/+1
2017-10-12[dump] Remove NDEBUG from test to enable dump methods [NFC]Don Hinton1-1/+1
2017-10-11Revert "[ADT] Make Twine's copy constructor private."Zachary Turner1-2/+4
2017-10-11[ADT] Make Twine's copy constructor private.Zachary Turner1-4/+2
2017-01-28Cleanup dump() functions.Matthias Braun1-1/+3
2016-12-17Add support for formatv to llvm::Twine.Zachary Turner1-0/+12
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren1-1/+1
2015-05-25Reformat.NAKAMURA Takumi1-2/+1
2015-05-25Prune CRLFs.NAKAMURA Takumi1-4/+4
2015-03-17Teach Twine to support SmallString.Yaron Keren1-7/+7
2014-02-26Remove unnecessary llvm:: qualification.Eric Christopher1-2/+2
2011-07-24Add Twine support for characters, and switch twine to use a union internallyChris Lattner1-27/+33
2011-07-15In Twine::str(), if the Twine stores only a std::string, just return a direct...Frits van Bommel1-3/+8
2010-12-03Support/ADT/Twine: Make toNullTerminatedStringRef not rely on UB :(.Michael J. Spencer1-4/+12
2010-12-01Support/ADT/Twine: Add toNullTerminatedStringRef.Michael J. Spencer1-0/+12
2010-11-26Fix Whitespace.Michael J. Spencer1-7/+7
2010-05-05Implement rdar://7415680 - Twine integer support lacks greatnessChris Lattner1-4/+4
2010-01-13Introduce Twine::toStringRef, a variant of toVector which avoids the copy if theBenjamin Kramer1-2/+8
2010-01-05Change errs() to dbgs().David Greene1-2/+3
2009-08-19Switch Twine::str() to use toVector(), which is now efficient.Daniel Dunbar1-14/+4
2009-08-02Add missing flush().Daniel Dunbar1-0/+3
2009-07-30Twine: Directly support int, long, and long long types.Daniel Dunbar1-17/+29
2009-07-30Twine: Use raw_ostream::write_hex, remove unused itohexstr method.Daniel Dunbar1-2/+1
2009-07-30Twine: Provide [u]int{32,64} conversions via implicit constructors instead ofDaniel Dunbar1-6/+18
2009-07-29Twines: Support numeric conversion directly (uitostr, etc).Daniel Dunbar1-11/+37
2009-07-24Add Twine ADT.Daniel Dunbar1-0/+91