summaryrefslogtreecommitdiff
path: root/lib/Support/Twine.cpp
AgeCommit message (Expand)AuthorFilesLines
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