aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/StringExtras.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-10-10Print quoted backslashes in LLVM IR as \\ instead of \5CReid Kleckner1-1/+3
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-07-26[ADT] Replace std::isprint by llvm::isPrint.Michael Kruse1-1/+1
2018-05-31[ADT] Make escaping fn conform to coding guidelinesJonas Devlieghere1-2/+2
2018-05-30[dsymutil] Escape HTML special characters in plist.Jonas Devlieghere1-0/+17
2018-01-26[Support] Move PrintEscapedString into the library its declaration is inBenjamin Kramer1-0/+10
2017-11-28[Support] Merge toLower / toUpper implementationsFrancis Visoiu Mistrih1-0/+6
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-1/+1
2015-03-23Purge unused includes throughout libSupport.Benjamin Kramer1-1/+0
2012-02-21Move the implementation of StringRef::split out of StringExtras.cppDuncan Sands1-21/+0
2011-07-21move tier out of an anonymous namespace, it doesn't make senseChris Lattner1-5/+4
2010-01-18Fix refacto reported by Nicolas Geoffray.Benjamin Kramer1-3/+1
2010-01-11Remove unused string functions.Benjamin Kramer1-12/+0
2010-01-11Add StrInStrNoCase, a StringRef version of CStrInCStrNoCase.Benjamin Kramer1-0/+13
2010-01-11Turns out llvm-gcc still uses SplitString with a vector. Add it back until IBenjamin Kramer1-0/+12
2010-01-11Reimplement getToken and SplitString as "StringRef helper functions"Benjamin Kramer1-28/+18
2009-11-13Distinguish "a," from "a". The first one splits into "a" + "" and the second ...Rafael Espindola1-3/+5
2009-11-13Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola1-3/+4
2009-11-13Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola1-0/+19
2009-10-17Move UnescapeString to a static function for its sole client; its inefficient...Daniel Dunbar1-30/+0
2009-10-17Remove llvm::EscapeString, raw_ostream::write_escaped is much faster.Daniel Dunbar1-26/+0
2009-04-15teach EscapeString and UnescapeString to handle ".Chris Lattner1-0/+3
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng1-1/+1
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov1-0/+1
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-08-05Escape some escapes that confuse doxygen.Reid Spencer1-1/+3
2006-11-28Add a helper functionChris Lattner1-0/+15
2006-07-14Add two helpers for escaping and unescaping strings.Chris Lattner1-0/+50
2005-04-21Remove trailing whitespaceMisha Brukman1-4/+4
2004-09-01Changes For Bug 352Reid Spencer1-1/+1
2003-12-29implement new getToken functionChris Lattner1-0/+43